* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Playfair Display', 'Raleway', sans-serif;
        }
        
        :root {
            --primary: #2C3E50;
            --secondary: #E74C3C;
            --accent: #F39C12;
            --light: #ECF0F1;
            --dark: #1A1A1A;
            --text: #333;
            --light-text: #fff;
            --victorian-red: #8C2A2A;
            --victorian-gold: #D4AF37;
            --victorian-cream: #F5E6D3;
            --victorian-brown: #5D4037;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: var(--victorian-cream);
            color: var(--text);
            line-height: 1.6;
            background-image: url('../img/10.webp');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            background-blend-mode: overlay;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.9);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            border-bottom: 2px solid var(--victorian-gold);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--victorian-gold);
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            padding: 5px 15px;
        }
        
        .logo::before, .logo::after {
            content: '';
            position: absolute;
            height: 20px;
            width: 2px;
            background-color: var(--victorian-gold);
            top: 50%;
            transform: translateY(-50%);
        }
        
        .logo::before {
            left: 0;
        }
        
        .logo::after {
            right: 0;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            font-family: 'Raleway', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }
        
        .nav-links a:hover {
            color: var(--victorian-gold);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -5px;
            left: 0;
            background-color: var(--victorian-gold);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 2px;
            background-color: var(--light-text);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Privacy Section */
        .privacy-section {
            padding: 120px 0 80px;
            background-color: rgba(245, 230, 211, 0.9);
            backdrop-filter: blur(5px);
        }
        
        .privacy-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .privacy-title h1 {
            font-size: 2.5rem;
            color: var(--victorian-red);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .privacy-title h1::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 2px;
            background-color: var(--victorian-gold);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .privacy-content {
            background-color: var(--light);
            border-radius: 0;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--victorian-gold);
            position: relative;
        }
        
        .privacy-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--victorian-red), var(--victorian-gold));
        }
        
        .privacy-content h2 {
            color: var(--victorian-red);
            margin: 30px 0 15px;
            font-size: 1.8rem;
            font-family: 'Playfair Display', serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .privacy-content h3 {
            color: var(--victorian-gold);
            margin: 25px 0 10px;
            font-size: 1.4rem;
            font-family: 'Playfair Display', serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .privacy-content p {
            margin-bottom: 15px;
            color: var(--text);
            font-family: 'Raleway', sans-serif;
        }
        
        .privacy-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .privacy-content li {
            margin-bottom: 10px;
            color: var(--text);
            font-family: 'Raleway', sans-serif;
        }
        
        .privacy-content a {
            color: var(--victorian-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .privacy-content a:hover {
            color: var(--victorian-red);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light-text);
            padding: 50px 0 20px;
            border-top: 5px solid var(--victorian-gold);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: var(--victorian-gold);
            font-family: 'Playfair Display', serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--victorian-red);
            bottom: 0;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s ease;
            font-family: 'Raleway', sans-serif;
        }
        
        .footer-links a:hover {
            color: var(--victorian-gold);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: var(--light-text);
            font-family: 'Raleway', sans-serif;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-text);
            font-size: 0.9rem;
            font-family: 'Raleway', sans-serif;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 70px;
                background-color: var(--dark);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .privacy-title h1 {
                font-size: 2rem;
            }
            
            .privacy-content {
                padding: 20px;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

