.about-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #FCE4EC 0%, #FAD2E0 15%, #FAD2E0 85%, #FCE4EC 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}



.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: gentleFloat 4s ease-in-out infinite;
    will-change: transform;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: var(--fs-h2);
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FCE4EC;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.about-section p {
    font-size: var(--fs-body);
    line-height: 1.9;
    color: #555;
    font-weight: 300;
    font-style: italic;
    position: relative;
}

@media (max-width: 1150px) {
    .about-section {
        padding: 4rem 1.5rem;
    }

    /* Font sizes handled by variables */

    .about-container {
        padding: 2rem 1.5rem;
    }

    /* Font sizes handled by variables */
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 1rem;
    }

    .about-container {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    /* Mobile Polish (Moved from mobile-nav.css) */
    @media (max-width: 1150px) {
        #about.section-active .about-container {
            background: transparent;
            box-shadow: none;
            border: none;
            padding: 0;
            backdrop-filter: none;
        }

        #about.section-active .about-container p {
            background: rgba(255, 255, 255, 0.6);
            padding: 1.5rem;
            border-radius: 20px;
            margin-bottom: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        }
    }

    /* Font sizes handled by variables */

    /* Font sizes handled by variables */
}