/* About Us Section */
        .about-section {
            background: #2C2C2C;
            padding: 50px 40px;
            text-align: center;
            color: white;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.4,0,.2,1);
        }

        .about-section.fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        .about-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .about-tagline {
            color: #4CAF50;
            font-family: 'Calibri', sans-serif;
            font-size: 1rem;
            margin-bottom: 8px;
            font-weight: 400;
        }

        .about-title {
            font-family: 'Cormorant', serif;
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 12px;
            color: white;
        }

        .about-description {
            font-family: 'Calibri', sans-serif;
            font-size: 1.1rem;
            line-height: 1.6;
            color: #e0e0e0;
            font-weight: 300;
            margin-bottom: 0;
            margin-left: auto;
            margin-right: auto;
            max-width: 600px;
        }
