* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Playfair Display', 'Georgia', serif;
        }
        
        :root {
            --primary: #5C2E3E; /* Deep burgundy */
            --secondary: #8C7A6B; /* Muted brown */
            --accent: #D9C5A8; /* Light beige */
            --background: #F5F2ED; /* Creamy off-white */
            --text: #3A3A3A;
            --light: #FFFFFF;
            --dark: #2C1810;
            --gold: #D4AF37; /* Victorian gold */
        }
        
        body {
            background-color: var(--background);
            color: var(--text);
            line-height: 1.6;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23D9C5A8" width="3" height="3" x="0" y="0" /><rect fill="%23D9C5A8" width="3" height="3" x="50" y="50" /></svg>');
            background-size: 100px 100px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            border-bottom: 2px solid var(--gold);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            font-size: 32px;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'Playfair Display', serif;
            position: relative;
            padding-bottom: 5px;
        }
        
        .logo:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--gold);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--primary);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            padding-bottom: 50px;
        }
        
        .terms-content {
            background-color: var(--light);
            padding: 40px;
            border-radius: 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
            position: relative;
            border: 1px solid var(--accent);
        }
        
        .terms-content:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--primary);
        }
        
        .terms-content h1 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', serif;
        }
        
        .terms-content h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 2px;
            background-color: var(--gold);
        }
        
        .terms-content h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 30px 0 15px;
            font-family: 'Playfair Display', serif;
        }
        
        .terms-content h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin: 25px 0 10px;
        }
        
        .terms-content p {
            margin-bottom: 15px;
        }
        
        .terms-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .terms-content li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }
        
        .terms-content li:before {
            content: '❧';
            position: absolute;
            left: 0;
            color: var(--primary);
        }
        
        .last-updated {
            font-style: italic;
            color: #666;
            margin-bottom: 30px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--light);
            padding: 50px 20px 20px;
            position: relative;
        }
        
        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--gold);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--gold);
            font-family: 'Playfair Display', serif;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-column ul li:before {
            content: '❧';
            position: absolute;
            left: 0;
            color: var(--gold);
        }
        
        .footer-column a {
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-column a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--light);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .terms-content {
                padding: 20px;
            }
            
            .terms-content h1 {
                font-size: 2rem;
            }
        }

