
        /* Стили для нового блока About Us */
        .about-hero {
            padding: 120px 20px 80px;
            text-align: center;
            background: linear-gradient(135deg, #f9f7f3 0%, #f0ede8 100%);
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
        }

        .about-hero h1 {
            font-family: 'Ballet', cursive;
            font-size: 5rem;
            color: #333;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
            animation-delay: 0.3s;
            letter-spacing: 2px;
        }

        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 3.5rem;
            }
        }

        .about-tagline {
            font-family: 'Lora', serif;
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto 60px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
            animation-delay: 0.5s;
            line-height: 1.6;
        }

        .about-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px 100px;
        }

        .about-section {
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            gap: 20px;
        }

        .section-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 300;
            color: #999;
            min-width: 40px;
        }

        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: #333;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 2px;
            background: #333;
            transition: width 0.6s ease;
        }

        .about-section:hover .section-title::after {
            width: 100px;
        }

        .section-text {
            font-family: 'Lora', serif;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-left: 60px;
        }

        .highlight {
            background: linear-gradient(120deg, #f9f7f3 0%, #f0ede8 100%);
            padding: 40px;
            border-radius: 10px;
            margin: 60px 0;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #333, #999);
        }

        .highlight-text {
            font-family: 'Lora', serif;
            font-size: 1.3rem;
            font-style: italic;
            color: #333;
            text-align: center;
            line-height: 1.8;
            margin: 0;
        }

        .global-presence {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .location-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .location-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .location-icon {
            font-size: 2rem;
            color: #333;
            margin-bottom: 20px;
        }

        .location-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .location-desc {
            font-family: 'Lora', serif;
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        .flow-words {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .flow-word {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            padding: 15px 30px;
            background: white;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            cursor: pointer;
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .flow-word:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            background: #333;
            color: white;
        }

        .visible {
            opacity: 1 !important;
            transform: translateY(0) !important;
            transform: scale(1) !important;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .about-hero {
                padding: 100px 20px 60px;
            }
            
            .about-content {
                padding: 0 20px 60px;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .section-text {
                margin-left: 0;
            }
            
            .highlight {
                padding: 30px 20px;
                margin: 40px 0;
            }
            
            .global-presence {
                grid-template-columns: 1fr;
            }
            
            .flow-words {
                gap: 20px;
            }
            
            .flow-word {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .about-hero h1 {
                font-size: 2.8rem;
            }
            
            .about-tagline {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .highlight-text {
                font-size: 1.1rem;
            }
        }
   