.btn-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-circle:hover {
    transform: scale(1.1);
    color: white !important;
}

.founder-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.about-content p {
    line-height: 1.8;
}

@media (max-width: 768px) {
    .founder-card {
        margin-top: 2rem;
    }
}