        :root {
            /* Основные цвета - светлая тема */
            --bg-primary: #F7F8FA;
            --bg-secondary: rgba(255, 255, 255, 0.9);
            --text-primary: #3c4052;
            --text-secondary: rgba(74, 79, 101, 0.85);
            --text-tertiary: rgba(74, 79, 101, 0.45);
            --border-light: rgba(0, 0, 0, 0.06);
            --border-medium: rgba(0, 0, 0, 0.12);
            --accent-primary: 74, 79, 101;
            --accent-gold: #7EB6E3;
            --accent-gold-light: #65A9DD;
            --primary-color: rgb(181, 105, 62);
            --primary-hover: rgb(161, 85, 42);
            --row-hover: rgba(0, 0, 0, 0.02);
            --gradient-primary: linear-gradient(135deg, #7EB6E3 0%, #65A9DD 100%);
            --gradient-subtle: linear-gradient(180deg, rgba(126, 182, 227, 0.05) 0%, rgba(126, 182, 227, 0) 100%);
            --success-color: #A8FF7F;
            --metro-red: #D62229;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
            --ease-premium: cubic-bezier(0.33, 1, 0.68, 1);
            --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
            
            /* Цвета для каждого здания */
            --building-A-color: 181, 105, 62;
            --building-B-color: 181, 105, 62;
            --building-C-color: 181, 105, 62;
            --building-D-color: 181, 105, 62;
        }

        /* Темная тема - применяется к html для мгновенного эффекта */
        html.night-mode,
        html.night-mode body {
            --bg-primary: #0e1116;
            --bg-secondary: rgba(26, 26, 31, 0.95);
            --text-primary: rgba(255, 255, 255, 0.95);
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-tertiary: rgba(255, 255, 255, 0.45);
            --border-light: rgba(255, 255, 255, 0.1);
            --border-medium: rgba(255, 255, 255, 0.15);
            --accent-primary: 255, 255, 255;
            --row-hover: rgba(255, 255, 255, 0.03);
            --gradient-subtle: linear-gradient(180deg, rgba(126, 182, 227, 0.08) 0%, rgba(126, 182, 227, 0) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
            font-weight: 400;
            letter-spacing: -0.011em;
            font-feature-settings: 'ss01' on, 'ss02' on, 'cv01' on;
            /* Transition будет добавлен через класс после загрузки */
        }
        
        /* Плавные переходы только после загрузки страницы */
        body.transitions-enabled {
            transition: background 0.4s ease, color 0.3s ease;
        }
        
        /* ========================================== */
        /* ЕДИНАЯ СИСТЕМА ШИРИН                       */
        /* ========================================== */
        /* 
         * Все секции следуют единому паттерну:
         * 1. Секция: padding: 50px 60px (мобильный: 30px 20px)
         * 2. Контейнер внутри: max-width: 1400px + margin: 0 auto
         * 3. Карточки с фоном: padding: 60px (мобильный: 24px)
         * 
         * Это обеспечивает единообразную ширину контента
         * на всей странице независимо от типа секции
         */

        /* Курсор для интерактивных элементов */
        button,
        .mobile-link,
        .mobile-sublink,
        .burger,
        .theme-toggle,
        .office-card,
        .pagination-btn,
        .faq-question,
        .geo-link,
        .filter-select {
            cursor: pointer !important;
        }

        /* ========================================== */
        /* THEME TOGGLE                               */
        /* ========================================== */
        .theme-toggle {
            width: 72px;
            height: 36px;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px) saturate(150%);
            -webkit-backdrop-filter: blur(20px) saturate(150%);
            border-radius: 36px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 
                0 4px 16px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .theme-toggle:hover {
            transform: translateY(-1px);
            box-shadow: 
                0 6px 20px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .theme-toggle.night-mode {
            background: linear-gradient(135deg, rgba(20, 20, 35, 0.4) 0%, rgba(40, 40, 70, 0.3) 100%);
            border-color: rgba(100, 120, 255, 0.15);
            box-shadow: 
                0 4px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(100, 120, 255, 0.05);
        }

        .toggle-slider {
            position: absolute;
            top: 50%;
            left: 4px;
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform: translateY(-50%);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .theme-toggle.night-mode .toggle-slider {
            transform: translateX(36px) translateY(-50%);
            background: linear-gradient(135deg, #2a2a3e 0%, #1e1e2e 100%);
        }

        .sun-icon, .moon-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.4s ease;
        }

        .sun-icon {
            width: 18px;
            height: 18px;
            opacity: 1;
        }

        .theme-toggle.night-mode .sun-icon {
            opacity: 0;
            transform: translate(-50%, -50%) rotate(180deg) scale(0.5);
        }

        .moon-icon {
            width: 14px;
            height: 14px;
            opacity: 0;
            transform: translate(-50%, -50%) rotate(-180deg) scale(0.5);
        }

        .theme-toggle.night-mode .moon-icon {
            opacity: 1;
            transform: translate(-50%, -50%) rotate(0deg) scale(1);
        }

        .sun-icon svg, .moon-icon svg {
            width: 100%;
            height: 100%;
        }

        .sun-icon svg circle {
            fill: #FFC107;
        }

        .sun-icon svg line {
            stroke: #FFC107;
            stroke-width: 2;
            stroke-linecap: round;
        }

        .moon-icon svg {
            fill: #b8b8d0;
        }

        /* Заголовок страницы */
        .page-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: var(--bg-primary);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 60px;
            border-bottom: 1px solid var(--border-light);
            transition: background 0.3s ease;
        }

        .header-logo {
            width: 80px;
            height: 40px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .header-logo:hover {
            opacity: 1;
        }

        .header-logo svg {
            width: 100%;
            height: 100%;
        }

        /* Основной контейнер страницы */
        .page-container {
            padding-top: 60px;
            min-height: 100vh;
            background: var(--bg-primary);
        }

        /* Hero секция */
        .hero-section {
            position: relative;
            height: 50vh;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: var(--gradient-subtle);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            opacity: 0.05;
            background-image: 
                radial-gradient(circle at 20% 80%, var(--accent-gold) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, var(--accent-gold-light) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, var(--accent-gold) 0%, transparent 50%);
            animation: gradientShift 20s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(-20px, -20px) scale(1.1); }
            66% { transform: translate(20px, -10px) scale(0.95); }
        }

        .hero-content {
            position: relative;
            text-align: center;
            z-index: 1;
            padding: 0 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .page-title {
            font-size: 48px;
            font-weight: 300;
            letter-spacing: -0.02em;
            line-height: 1.1;
            color: var(--text-primary);
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease forwards;
        }

        .page-subtitle {
            font-size: 17px;
            line-height: 1.6;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========================================== */
        /* СЕКЦИЯ ФИЛЬТРОВ И ОФИСОВ                   */
        /* ========================================== */

        .offices-section {
            padding: 50px 60px;
        }
        
        .offices-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 40px;
            font-weight: 200;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
        }

        /* Фильтры */
        .filters-container {
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 32px;
            margin-bottom: 40px;
            backdrop-filter: blur(20px);
        }

        .filters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .filter-label {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .filter-select {
            width: 100%;
            padding: 12px 16px;
            background: var(--bg-primary);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .filter-select:hover {
            border-color: var(--accent-gold);
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(126, 182, 227, 0.1);
        }

        /* Карточки офисов */
        .offices-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }
        
        @media (max-width: 968px) {
            .offices-grid {
                grid-template-columns: 1fr;
            }
        }

        .office-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 28px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .office-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .office-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-gold);
            box-shadow: 0 12px 32px rgba(126, 182, 227, 0.15);
        }

        .office-card:hover::before {
            transform: scaleX(1);
        }

        .office-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .office-number {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .office-building {
            padding: 4px 12px;
            background: var(--gradient-subtle);
            border-radius: 8px;
            font-size: 12px;
            font-weight: 500;
            color: var(--accent-gold);
        }

        .office-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }

        .detail-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .detail-label {
            font-size: 12px;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .detail-value {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-primary);
        }

        .office-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-light);
        }

        .price-label {
            font-size: 13px;
            color: var(--text-tertiary);
        }

        .price-value {
            font-size: 22px;
            font-weight: 600;
            color: var(--accent-gold);
        }

        .price-per-month {
            font-size: 14px;
            color: var(--text-tertiary);
            margin-left: 4px;
        }
        
        .office-description {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--border-light);
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-secondary);
            max-height: 120px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
        }
        
        .office-description p {
            margin: 0;
        }
        
        .office-badges {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-top: 16px;
            flex-wrap: wrap;
        }
        
        .office-metro-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(214, 34, 41, 0.1);
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            color: var(--metro-red);
        }
        
        .office-metro-badge svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }
        
        .office-status {
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .office-status.status-available {
            background: rgba(168, 255, 127, 0.15);
            color: #4CAF50;
        }
        
        .office-status.status-occupied {
            background: rgba(158, 158, 158, 0.15);
            color: #757575;
        }
        
        .office-status.status-reserved {
            background: rgba(255, 193, 7, 0.15);
            color: #F57C00;
        }

        /* Пагинация */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
        }

        .pagination-btn {
            padding: 10px 16px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: 10px;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pagination-btn:hover:not(:disabled) {
            background: var(--gradient-primary);
            color: white;
            border-color: var(--accent-gold);
        }

        .pagination-btn.active {
            background: var(--gradient-primary);
            color: white;
            border-color: var(--accent-gold);
        }

        .pagination-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        /* ========================================== */
        /* FAQ SECTION                                */
        /* ========================================== */

        .faq-section {
            padding: 50px 60px;
            background: var(--gradient-subtle);
        }

        .faq-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .faq-title {
            font-size: 40px;
            font-weight: 200;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .faq-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active {
            border-color: var(--accent-gold);
            box-shadow: 0 4px 16px rgba(126, 182, 227, 0.1);
        }

        .faq-question {
            width: 100%;
            padding: 24px;
            background: none;
            border: none;
            text-align: left;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: var(--accent-gold);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--gradient-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-icon {
            background: var(--gradient-primary);
            transform: rotate(180deg);
        }

        .faq-icon svg {
            width: 14px;
            height: 14px;
            stroke: var(--accent-gold);
            transition: stroke 0.3s ease;
        }

        .faq-item.active .faq-icon svg {
            stroke: white;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 24px 24px 24px;
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        /* ========================================== */
        /* ФОРМА ОБРАТНОЙ СВЯЗИ                       */
        /* ========================================== */

        .feedback-section {
            padding: 50px 60px;
        }

        .feedback-card {
            max-width: 1400px;
            margin: 0 auto;
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 60px;
            box-shadow: var(--shadow-md);
        }

        .feedback-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .feedback-title {
            font-size: 32px;
            font-weight: 300;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .feedback-subtitle {
            font-size: 15px;
            color: var(--text-secondary);
        }

        .form-grid {
            display: grid;
            gap: 20px;
            margin-bottom: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-label {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .form-input,
        .form-textarea {
            padding: 14px 16px;
            background: var(--bg-primary);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(126, 182, 227, 0.1);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-submit {
            width: 100%;
            padding: 16px;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(126, 182, 227, 0.3);
        }

        .form-submit:active {
            transform: translateY(0);
        }

        /* ========================================== */
        /* О БЦ СЕКЦИЯ (главная страница)             */
        /* ========================================== */

        .about-bc-section {
            padding: 50px 60px;
        }

        .about-bc-container {
            max-width: 1400px;
            margin: 0 auto;
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 60px;
        }

        .about-bc-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .about-bc-title {
            font-size: 36px;
            font-weight: 300;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .about-bc-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .about-bc-content p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-secondary);
            margin: 0;
        }

        /* ========================================== */
        /* ПРЕИМУЩЕСТВА                               */
        /* ========================================== */

        .advantages-section {
            padding: 50px 60px;
            background: var(--gradient-subtle);
        }

        .advantages-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .advantages-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .advantages-title {
            font-size: 40px;
            font-weight: 200;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .advantages-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        
        @media (max-width: 1200px) {
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .advantages-grid {
                grid-template-columns: 1fr;
            }
        }

        .advantage-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 32px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .advantage-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-gold);
            box-shadow: 0 12px 32px rgba(126, 182, 227, 0.15);
        }

        .advantage-card:hover::before {
            transform: scaleX(1);
        }

        .advantage-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            padding: 16px;
            background: var(--gradient-subtle);
            border-radius: 16px;
            color: var(--accent-gold);
            transition: all 0.3s ease;
        }

        .advantage-card:hover .advantage-icon {
            background: var(--gradient-primary);
            color: white;
            transform: scale(1.1) rotate(5deg);
        }

        .advantage-icon svg {
            width: 100%;
            height: 100%;
        }

        .advantage-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .advantage-description {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-secondary);
            margin: 0;
        }

        /* ========================================== */
        /* СВЯЗАННЫЕ ЛОКАЦИИ                          */
        /* ========================================== */

        .related-locations-section {
            padding: 50px 60px;
        }
        
        /* ========================================== */
        /* СЕКЦИЯ АРЕНДЫ ОФИСНЫХ ПОМЕЩЕНИЙ            */
        /* ========================================== */
        
        .office-rental-section {
            padding: 50px 60px;
            background: var(--bg-primary);
        }
        
        .office-rental-container {
            max-width: 1400px;
            margin: 0 auto;
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 60px;
        }
        
        .office-rental-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .office-rental-title {
            font-size: 40px;
            font-weight: 200;
            color: var(--text-primary);
            margin-bottom: 24px;
        }
        
        .office-rental-content {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 40px;
        }
        
        .office-rental-content p {
            margin-bottom: 16px;
        }
        
        .office-rental-content p:last-child {
            margin-bottom: 0;
        }
        
        .office-rental-subtitle {
            font-size: 18px;
            font-weight: 500;
            color: var(--text-primary);
            margin: 32px 0 20px;
        }
        
        .area-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin-top: 32px;
        }
        
        .area-button {
            padding: 16px 32px;
            background: var(--bg-primary);
            border: 2px solid var(--border-medium);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .area-button:hover {
            background: var(--gradient-primary);
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(126, 182, 227, 0.3);
        }
        
        .area-button:active {
            transform: translateY(0);
        }

        .related-locations-container {
            max-width: 1400px;
            margin: 0 auto;
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 60px;
        }

        .related-locations-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .related-locations-title {
            font-size: 40px;
            font-weight: 200;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .related-locations-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
        }

        .related-group {
            margin-bottom: 48px;
        }

        .related-group:last-child {
            margin-bottom: 0;
        }

        .related-group-title {
            font-size: 24px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .related-group-icon {
            width: 24px;
            height: 24px;
            color: var(--accent-gold);
        }

        .related-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
        }

        .related-link {
            padding: 12px 20px;
            background: var(--bg-primary);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            color: var(--text-primary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
            transition: all 0.3s ease;
            display: block;
        }

        .related-link:hover {
            background: var(--gradient-primary);
            color: white;
            border-color: var(--accent-gold);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(126, 182, 227, 0.2);
        }

        /* ========================================== */
        /* RESPONSIVE                                 */
        /* ========================================== */

        @media (max-width: 768px) {
            .page-header {
                padding: 0 20px;
                height: 70px;
            }

            .hero-section {
                min-height: 300px;
                height: 40vh;
            }

            .page-title {
                font-size: 32px;
            }

            .page-subtitle {
                font-size: 15px;
            }

            .offices-section,
            .feedback-section,
            .about-bc-section,
            .related-locations-section,
            .office-rental-section {
                padding: 30px 20px;
            }

            .section-title,
            .faq-title,
            .advantages-title,
            .about-bc-title,
            .related-locations-title,
            .office-rental-title {
                font-size: 28px;
            }

            .filters-container,
            .feedback-card,
            .about-bc-container,
            .related-locations-container,
            .office-rental-container {
                padding: 24px;
            }

            .filters-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .offices-grid {
                grid-template-columns: 1fr;
            }

            .advantages-section,
            .faq-section {
                padding: 30px 20px;
            }

            .advantages-grid {
                grid-template-columns: 1fr;
            }

            .related-links-grid {
                grid-template-columns: 1fr;
            }

            .related-group-title {
                font-size: 20px;
            }
            
            .area-buttons {
                gap: 12px;
            }
            
            .area-button {
                padding: 12px 24px;
                font-size: 14px;
            }

            .theme-toggle-mobile {
                width: 60px;
                height: 30px;
            }

            .theme-toggle-mobile .toggle-slider {
                width: 24px;
                height: 24px;
                left: 3px;
            }

            .theme-toggle-mobile.night-mode .toggle-slider {
                transform: translateX(25px) translateY(-50%);
            }
        }

        .mobile-header-logo {
            width: 52px;
            height: 26px;
            opacity: 0.85;
            transition: opacity 0.3s ease;
        }

        .mobile-header-logo:hover {
            opacity: 1;
        }

        .site-header__brand {
            padding-top: 5px;
        }