.about-page {
    padding: 120px 0 60px;
    background-color: var(--light-bg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.profile-section {
    display: flex;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
}

.profile-image {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 5px solid white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-image:hover img {
    transform: scale(1.1);
}

.profile-info {
    flex-grow: 1;
}

.profile-info h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.info-item {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: baseline;
}

.info-item .label {
    font-weight: 600;
    color: var(--primary-color);
    width: 120px;
}

.info-item .value {
    color: #666;
}

.contact-section {
    background-color: var(--light-bg);
    padding: 2rem 3rem;
    border-top: 1px solid #eee;
}

.contact-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--secondary-color);
}

.social-link i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .profile-section {
        padding: 2rem;
        gap: 2rem;
    }

    .profile-image {
        width: 250px;
        height: 250px;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .info-item .label {
        width: auto;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
} 