/* Same CSS as in index.html */
        :root {
            --primary: #D4AF37;
            --secondary: #7A6A5F;
            --accent: #C0B6A8;
            --dark: #1A1A1A;
            --light: #F5F5F5;
            --artdeco-gold: #D4AF37;
            --artdeco-black: #000000;
            --artdeco-ivory: #FFFFF0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Times New Roman', serif;
        }
        
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
            background-image: 
                linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)),
                url('https://images.unsplash.com/photo-1517240891382-9c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-attachment: fixed;
            background-size: cover;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.95);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 3px solid var(--primary);
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            letter-spacing: 2px;
        }
        
        .logo span {
            color: var(--light);
            margin-left: 0.5rem;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
            letter-spacing: 1px;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        .content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem;
            background-color: rgba(26, 26, 26, 0.8);
            border-radius: 0;
            margin-bottom: 2rem;
            border: 2px solid var(--primary);
        }
        
        h1 {
            color: var(--primary);
            margin-bottom: 2rem;
            text-align: center;
            letter-spacing: 1px;
        }
        
        h2 {
            color: var(--primary);
            margin: 2rem 0 1rem;
            letter-spacing: 0.5px;
        }
        
        p {
            margin-bottom: 1rem;
            letter-spacing: 0.3px;
        }
        
        ul {
            margin-bottom: 1rem;
            padding-left: 2rem;
        }
        
        footer {
            background-color: var(--dark);
            padding: 3rem 2rem 1rem;
            text-align: center;
            border-top: 3px solid var(--primary);
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 1.5rem;
            display: inline-block;
            letter-spacing: 2px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
            letter-spacing: 0.5px;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .copyright {
            margin-top: 2rem;
            color: var(--light);
            opacity: 0.7;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transform: translateY(-150%);
                transition: transform 0.3s;
                z-index: 999;
                border-bottom: 2px solid var(--primary);
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .burger {
                display: block;
            }
        }

