
        /* Цветовая палитра "Светлое Золото" */
        :root {
            --gold-accent: #bfa37c; /* Приглушенное золото для светлого фона */
            --dark-text: #1a1a1a;
            --light-bg: #ffffff;
        }

        /* Стилизация блока О Нас */
        .about-section {
            padding: 0px 20px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            margin-bottom:30px;
            height:800px;
           
        }

        /* Элемент Логотипа (имитация) */
        .brand-logo-sim {
            margin-top:30px;
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 700;
            color: var(--gold-accent); /* Золотое лого на белом */
            text-transform: uppercase;
            letter-spacing: 5px;
            margin-bottom: 10px;
        }

        .brand-sub-sim {
            font-size: 12px;
            letter-spacing: 3px;
            color: #888;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        /* Заголовки */
        .about-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 400;
            color: var(--dark-text);
            margin-bottom: 40px;
            line-height: 1.2;
        }

        /* Текстовые абзацы */
        .about-content {
            max-width: 700px;
            margin: 0 auto ;
            font-size: 16px;
            line-height: 1.8;
            font-weight: 300;
            color: #444; /* Чуть мягче чем черный */
        }

        /* Выделенная ключевая фраза (Локация и Перспектива) */
        .location-highlight {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-style: italic;
            color: var(--gold-accent); /* ЗОЛОТОЙ АКЦЕНТ НА ФРАЗЕ */
            max-width: 800px;
            margin: 0 auto 80px auto;
            line-height: 1.5;
            padding: 0 20px;
        }

        /* Стилизация Кнопки (в стиле сайта, но для светлого фона) */
        .btn-gold-outline {
            display: inline-block;
            padding: 15px 40px;
            border: 1px solid var(--gold-accent); /* Золотая рамка */
            color: var(--gold-accent); /* Золотой текст */
            text-decoration: none;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-gold-outline:hover {
            background-color: var(--gold-accent); /* Заливка при наведении */
            color: var(--light-bg); /* Белый текст при наведении */
        }

        /* Адаптивность для мобильных */
        @media (max-width: 768px) {
             .about-section {
            padding: 40px 20px;
            text-align: center;
            max-width: 1200px;
            margin: 2000px auto;
            margin-bottom:30px;
            height:800px;
           
        }
            .about-section h2 { font-size: 32px;}
            .location-highlight { font-size: 18px; }
            .about-section { padding:0px 20px; }
        }
