/* ========================================
   ABOUT PAGE SPECIFIC STYLES
   ======================================== */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--theme-primary-dark);
    font-family: var(--theme-font-heading);
}

.image-section {
    margin: 2.5rem 0;
    text-align: center;
}

.profile-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 3px solid var(--theme-border);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}
