@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
        :root {
            --color-primary: #8e7c6d;
            --color-secondary: #c9bdae;
            --color-tertiary: #5e4a3d;
            --color-dark: #2e2621;
            --color-light: #f5f0e9;
            --font-main: 'Raleway', sans-serif;
            --font-heading: 'Playfair Display', serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: var(--font-main); color: var(--color-dark); background-color: var(--color-light); line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { position: fixed; top: 0; left: 0; width: 100%; background-color: var(--color-light); padding: 15px 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }
        header .container { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-family: var(--font-heading); font-size: 2.5rem; color: var(--color-tertiary); text-decoration: none; font-weight: 700; }
        nav ul { display: flex; list-style: none; }
        nav ul li { margin-left: 30px; }
        nav a { text-decoration: none; color: var(--color-dark); font-weight: 500; font-size: 1.1rem; position: relative; transition: color 0.3s ease; }
        nav a:hover { color: var(--color-primary); }
        nav a::after { content: ''; position: absolute; width: 0; height: 2px; background-color: var(--color-primary); bottom: -5px; left: 0; transition: width 0.3s ease; }
        nav a:hover::after { width: 100%; }
        .burger-menu { display: none; flex-direction: column; cursor: pointer; }
        .burger-menu span { width: 25px; height: 3px; background-color: var(--color-dark); margin: 4px 0; transition: 0.4s; }
        @media (max-width: 768px) {
            nav { display: none; flex-direction: column; position: absolute; top: 70px; right: 0; width: 100%; background-color: var(--color-light); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); text-align: center; padding: 20px 0; }
            nav.active { display: flex; }
            nav ul { flex-direction: column; }
            nav ul li { margin: 15px 0; }
            .burger-menu { display: flex; }
            .burger-menu.active .bar1 { transform: rotate(-45deg) translate(-5px, 6px); }
            .burger-menu.active .bar2 { opacity: 0; }
            .burger-menu.active .bar3 { transform: rotate(45deg) translate(-5px, -6px); }
        }
        main { padding-top: 100px; padding-bottom: 50px; }
        main h1 { font-family: var(--font-heading); font-size: 3rem; color: var(--color-tertiary); margin-bottom: 30px; text-align: center; }
        main h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--color-tertiary); margin-top: 40px; margin-bottom: 15px; }
        main p, main ul { margin-bottom: 20px; font-size: 1.1rem; }
        main li { margin-left: 20px; margin-bottom: 10px; }
        footer { background-color: var(--color-dark); color: var(--color-light); padding: 50px 0 20px; text-align: center; }
        footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .footer-logo { font-family: var(--font-heading); font-size: 2rem; color: var(--color-light); text-decoration: none; margin-bottom: 20px; }
        .footer-nav ul { list-style: none; display: flex; gap: 20px; margin-bottom: 20px; }
        .footer-nav a { text-decoration: none; color: var(--color-light); transition: color 0.3s ease; }
        .footer-nav a:hover { color: var(--color-primary); }
        .footer-contact { text-align: right; line-height: 1.8; margin-bottom: 20px; }
        .footer-contact p { margin: 5px 0; }
        .disclaimer { background-color: var(--color-tertiary); color: var(--color-light); text-align: center; padding: 15px 0; font-size: 0.9rem; margin-top: 30px; }
        @media (max-width: 768px) { footer .container { flex-direction: column; } .footer-contact { text-align: center; } }

