@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');

        :root {
            --color-primary: #8C4729;
            --color-secondary: #EBEBEB;
            --color-tertiary: #1A1A1A;
            --color-accent: #E1AF2E;
            --color-text: #333;
            --font-main: 'Playfair Display', serif;
            --font-headings: 'Cinzel', serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-main);
            color: var(--color-text);
            background-color: var(--color-secondary);
            line-height: 1.6;
            padding-top: 80px;
        }
        
        header {
            background-color: var(--color-tertiary);
            color: var(--color-secondary);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header .logo {
            font-family: var(--font-headings);
            font-size: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-accent);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            color: var(--color-secondary);
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 700;
            position: relative;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--color-accent);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }

        .hamburger .bar {
            height: 3px;
            width: 100%;
            background-color: var(--color-secondary);
            transition: all 0.3s ease-in-out;
        }
        
        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active .bar:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .hamburger.active .bar:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        main {
            padding: 2rem 10%;
        }

        h1, h2, h3 {
            font-family: var(--font-headings);
            color: var(--color-primary);
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        h2 {
            font-size: 2rem;
            margin-top: 2rem;
        }

        .content {
            background-color: #fff;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        ul {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }

        .disclaimer {
            background-color: #eee;
            color: #666;
            padding: 2rem 10%;
            font-size: 0.8rem;
            text-align: center;
            margin-top: 2rem;
        }
        
        footer {
            background-color: var(--color-tertiary);
            color: var(--color-secondary);
            padding: 3rem 10%;
            text-align: center;
            border-top: 5px solid var(--color-primary);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
            text-align: left;
        }

        .footer-section h3 {
            color: var(--color-accent);
            margin-bottom: 1rem;
            font-size: 1.2rem;
            text-transform: uppercase;
        }

        .footer-section p, .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: var(--color-accent);
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--color-primary);
                flex-direction: column;
                justify-content: flex-start;
                padding-top: 2rem;
                transition: right 0.5s ease-in-out;
                z-index: 999;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 1rem 0;
                text-align: center;
            }

            .hamburger {
                display: flex;
            }

            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-section {
                text-align: center;
            }
        }

