/* Same CSS as index.html */
        :root {
            --primary: #3a2c2c;
            --secondary: #c9a66b;
            --accent: #8c4e2a;
            --light: #f5f0e6;
            --dark: #1e1616;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Times New Roman', serif;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            padding-top: 80px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            color: var(--light);
            padding: 1rem;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 1.5rem;
        }
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: var(--secondary);
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        section {
            padding: 4rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        h1, h2, h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 3rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            position: relative;
            padding-bottom: 1rem;
        }
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 3px;
            background-color: var(--secondary);
        }
        h3 {
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        ul, ol {
            margin-bottom: 1rem;
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        footer {
            background-color: var(--primary);
            color: var(--light);
            padding: 3rem 1rem;
            text-align: center;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary);
            margin-bottom: 1rem;
            display: inline-block;
        }
        .footer-links h3 {
            color: var(--light);
            margin-bottom: 1rem;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links ul li {
            margin-bottom: 0.5rem;
        }
        .footer-links ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links ul li a:hover {
            color: var(--secondary);
        }
        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        .footer-contact i {
            margin-right: 0.5rem;
            color: var(--secondary);
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .disclaimer {
            font-size: 0.8rem;
            color: #999;
            margin-top: 2rem;
            padding: 1rem;
            background-color: #f9f9f9;
            border-radius: 4px;
        }
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.5s ease;
            }
            nav ul.active {
                left: 0;
            }
            nav ul li {
                margin: 1rem 0;
            }
            .burger {
                display: block;
            }
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }

