/* Базовые стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Georgia', serif;
        }
        
        body {
            background-color: #f8f4e6;
            color: #3a3a3a;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Хедер */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(62, 126, 77, 0.95);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 0 20px;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #f8f4e6;
            text-decoration: none;
            letter-spacing: 1px;
            font-family: 'Playfair Display', serif;
        }
        
        .nav {
            display: flex;
            list-style: none;
        }
        
        .nav li {
            margin-left: 25px;
        }
        
        .nav a {
            color: #f8f4e6;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav a:hover {
            color: #d4af37;
        }
        
        .nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #d4af37;
            transition: width 0.3s;
        }
        
        .nav a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 30px;
            position: relative;
        }
        
        .burger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #f8f4e6;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }
        
        .burger span:nth-child(1) {
            top: 0px;
        }
        
        .burger span:nth-child(2) {
            top: 10px;
        }
        
        .burger span:nth-child(3) {
            top: 20px;
        }
        
        .burger.active span:nth-child(1) {
            top: 10px;
            transform: rotate(135deg);
        }
        
        .burger.active span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }
        
        .burger.active span:nth-child(3) {
            top: 10px;
            transform: rotate(-135deg);
        }
        
        /* Основной контент */
        main {
            padding-top: 100px;
            padding-bottom: 80px;
            max-width: 1000px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        
        .page-title {
            margin-bottom: 40px;
            font-family: 'Playfair Display', serif;
        }
        
        .page-title h1 {
            font-size: 42px;
            color: #3e7e4d;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .page-title h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: #d4af37;
        }
        
        .page-title p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
        }
        
        .terms-content {
            background-color: #fff;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .terms-section {
            margin-bottom: 30px;
        }
        
        .terms-section h2 {
            font-size: 28px;
            color: #3e7e4d;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }
        
        .terms-section h3 {
            font-size: 22px;
            color: #3e7e4d;
            margin: 20px 0 10px;
            font-family: 'Playfair Display', serif;
        }
        
        .terms-section p {
            margin-bottom: 15px;
        }
        
        .terms-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .terms-section li {
            margin-bottom: 8px;
        }
        
        /* Футер */
        footer {
            background-color: #3e7e4d;
            color: #f8f4e6;
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #d4af37;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: #f8f4e6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-col ul li a:hover {
            color: #d4af37;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(248, 244, 230, 0.2);
            font-size: 14px;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: rgba(62, 126, 77, 0.95);
                flex-direction: column;
                justify-content: start;
                align-items: center;
                padding-top: 50px;
                transform: translateX(-100%);
                transition: transform 0.3s ease-out;
                z-index: 999;
            }
            
            .nav.active {
                transform: translateX(0);
            }
            
            .nav li {
                margin: 0 0 25px 0;
            }
            
            .nav a {
                font-size: 20px;
            }
            
            .burger {
                display: block;
            }
            
            .page-title h1 {
                font-size: 32px;
            }
            
            .terms-content {
                padding: 25px;
            }
        }
        
        @media (max-width: 576px) {
            .page-title h1 {
                font-size: 28px;
            }
            
            .terms-section h2 {
                font-size: 24px;
            }
            
            .terms-section h3 {
                font-size: 20px;
            }
        }

