 :root {
            --dark-bg: #1a1a1a;
            --darker-bg: #121212;
            --card-bg: #242424;
            --text-color: #e0e0e0;
            --secondary-color: #8b4513; /* шоколадный */
            --accent-color: #c41e3a; /* красный */
            --gold-color: #d4af37; /* золотой */
            --base-font-size: 18px; /* базовый размер шрифта */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cormorant Garamond', serif;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.7;
            font-size: var(--base-font-size);
        }
        
        /* Шапка сайта */
        header {
            background-color: rgba(26, 26, 26, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
            position: fixed;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 60px;
            margin-right: 15px;
        }
        
        .logo h1 {
            font-size: 32px;
            color: var(--gold-color);
            font-weight: 700;
        }
        
        .logo span {
            color: var(--secondary-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin: 0 20px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            font-size: 20px;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--secondary-color);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
        }
        
        .header-actions a {
            margin-left: 25px;
            color: var(--text-color);
            font-size: 24px;
            transition: color 0.3s;
        }
        
        .header-actions a:hover {
            color: var(--secondary-color);
        }
        
        /* Основной контент */
        .main-content {
            padding-top: 100px;
            min-height: 100vh;
        }
        
        /* Герой секция для страницы О нас */
        .about-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/background.jpg');
            background-size: cover;
            background-position: center;
            padding: 5%;
            text-align: center;
            color: white;
            position: relative;
        }
        
        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
        }
        
        .about-hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .about-hero h2 {
            font-size: 48px;
            margin-bottom: 30px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            color: var(--gold-color);
            line-height: 1.3;
        }
        
        .about-hero p {
            font-size: 24px;
            margin-bottom: 40px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
            line-height: 1.5;
        }
        
        /* История компании */
        .history {
            padding: 100px 5%;
            background-color: var(--darker-bg);
        }
        
        .section-title {
            font-size: 36px;
            margin-bottom: 70px;
            position: relative;
            display: inline-block;
            color: var(--gold-color);
            text-align: center;
            width: 100%;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        
        .history-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .history-text {
            font-size: 18px;
            line-height: 1.8;
        }
        
        .history-text p {
            margin-bottom: 20px;
        }
        
        .history-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        
        .history-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .history-image:hover img {
            transform: scale(1.05);
        }
        
        /* Наша команда */
        .team {
            padding: 100px 5%;
            background-color: var(--dark-bg);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .team-member {
            background-color: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        
        .team-member-img {
            height: 300px;
            overflow: hidden;
        }
        
        .team-member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .team-member:hover .team-member-img img {
            transform: scale(1.1);
        }
        
        .team-member-info {
            padding: 25px;
        }
        
        .team-member-info h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--gold-color);
        }
        
        .team-member-info p {
            font-size: 18px;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        /* Контакты и карта */
        .contacts {
            padding: 100px 5%;
            background-color: var(--darker-bg);
        }
        
        .contacts-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info {
            font-size: 18px;
            line-height: 1.8;
        }
        
        .contact-info h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--gold-color);
        }
        
        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 20px;
        }
        
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            height: 450px;
        }
        
        /* Футер */
        footer {
            background-color: var(--darker-bg);
            color: white;
            padding: 80px 5% 40px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .footer-col h3 {
            font-size: 24px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            color: var(--gold-color);
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .footer-col p {
            margin-bottom: 20px;
            font-size: 18px;
            line-height: 1.6;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 15px;
        }
        
        .footer-col ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 18px;
        }
        
        .footer-col ul li a:hover {
            color: var(--secondary-color);
        }
        
        .social-links {
            display: flex;
            margin-top: 25px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 15px;
            color: white;
            transition: all 0.3s;
            font-size: 22px;
        }
        
        .social-links a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 70px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 18px;
        }
        
        /* Адаптивность */
        @media (max-width: 968px) {
            .history-content,
            .contacts-container {
                grid-template-columns: 1fr;
            }
            
            .history-image {
                order: -1;
            }
            
            .map-container {
                height: 350px;
            }
        }
        
        @media (max-width: 768px) {
            :root {
                --base-font-size: 16px;
            }
            
            .header-container {
                flex-direction: column;
                padding: 15px;
            }
            
            nav ul {
                margin: 20px 0;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 10px 15px;
            }
            
            .about-hero h2 {
                font-size: 36px;
            }
            
            .about-hero p {
                font-size: 20px;
            }
            
            .section-title {
                font-size: 32px;
            }
        }