:root {
            --primary-color: #5D4037;
            --secondary-color: #8D6E63;
            --accent-color: #D7CCC8;
            --background-color: #EFEBE9;
            --text-color: #3E2723;
            --card-bg: #FFFFFF;
            --gold-color: #D4AF37;
            --border-color: #BCAAA4;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Crimson Text', 'Georgia', serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%238D6E63' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            z-index: -1;
            opacity: 0.5;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(93, 64, 55, 0.95);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            border-bottom: 2px solid var(--gold-color);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--accent-color);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'Playfair Display', 'Georgia', serif;
            position: relative;
            padding-left: 40px;
        }
        
        .logo::before {
            content: '♛';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gold-color);
            font-size: 24px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 5px;
            font-size: 16px;
            letter-spacing: 1px;
        }
        
        nav ul li a:hover {
            color: var(--gold-color);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 0;
            background-color: var(--gold-color);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }
        
        .burger div {
            width: 100%;
            height: 2px;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            padding-bottom: 50px;
            min-height: 100vh;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 50px;
            padding-top: 30px;
        }
        
        .page-title h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .page-title h1::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            background-color: var(--gold-color);
            bottom: -10px;
            left: 25%;
        }
        
        .page-title p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 20px auto 0;
            color: var(--text-color);
        }
        
        .terms-content {
            background-color: var(--card-bg);
            border-radius: 0;
            padding: 40px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
            position: relative;
        }
        
        .terms-content::before {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 1px solid var(--gold-color);
            z-index: -1;
        }
        
        .terms-section {
            margin-bottom: 30px;
        }
        
        .terms-section h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            padding-left: 30px;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .terms-section h2::before {
            content: '❦';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gold-color);
            font-size: 20px;
        }
        
        .terms-section h3 {
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin: 20px 0 10px;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .terms-section p {
            margin-bottom: 15px;
        }
        
        .terms-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .terms-section li {
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            padding: 50px 0 20px;
            color: var(--accent-color);
            position: relative;
        }
        
        footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--gold-color), var(--secondary-color), var(--primary-color));
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-logo h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--accent-color);
            display: flex;
            align-items: center;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .footer-logo h3::before {
            content: '♛';
            display: inline-block;
            width: 24px;
            height: 24px;
            color: var(--gold-color);
            margin-right: 10px;
            font-size: 24px;
        }
        
        .footer-logo p {
            margin-bottom: 15px;
            opacity: 0.8;
        }
        
        .footer-links {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--accent-color);
            position: relative;
            padding-bottom: 10px;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .footer-links h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background-color: var(--gold-color);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--accent-color);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--gold-color);
            transform: translateX(5px);
        }
        
        .footer-contact {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--accent-color);
            position: relative;
            padding-bottom: 10px;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        .footer-contact h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background-color: var(--gold-color);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            opacity: 0.8;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--gold-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .burger {
                display: flex;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            nav ul.active {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .page-title h1 {
                font-size: 2rem;
            }
            
            .terms-content {
                padding: 20px;
            }
        }

