@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Playfair+Display:wght@400;700&display=swap');

        :root {
            --primary-color: #5d4037;
            --secondary-color: #fbe9e7;
            --accent-color: #8d6e63;
            --text-color: #3e2723;
            --bg-color: #fff8e1;
            --shadow-color: rgba(0, 0, 0, 0.1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        html {
            font-size: 16px;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
        }

        header {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px var(--shadow-color);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--accent-color);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--secondary-color);
            margin: 4px;
            transition: all 0.3s ease;
        }

        main {
            padding-top: 80px;
        }

        .container {
            max-width: 800px;
            margin: 4rem auto;
            padding: 2rem;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px var(--shadow-color);
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        h2 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        p, ul {
            margin-bottom: 1rem;
        }

        ul {
            padding-left: 1.5rem;
        }
        
        .disclaimer {
            background-color: #f8f8f8;
            padding: 1rem;
            text-align: center;
            font-size: 0.8rem;
            color: #666;
            border-top: 1px solid #ddd;
        }

        footer {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 2rem;
            text-align: center;
        }
        
        footer .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            list-style: none;
            display: flex;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .footer-links li {
            margin: 0 1rem;
        }

        .footer-links a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .footer-contact p {
            margin-bottom: 0.5rem;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #fff;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            padding: 1rem;
            text-align: center;
            z-index: 2000;
            display: none;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .cookie-banner p {
            margin: 0;
        }

        .cookie-banner .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: #fff;
            padding: 0.5rem 1.5rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 700;
            transition: background-color 0.3s ease, transform 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-menu {
                flex-direction: column;
                width: 100%;
                text-align: center;
                background-color: var(--primary-color);
                position: absolute;
                top: 80px;
                left: -100%;
                transition: left 0.5s ease;
            }
            .nav-menu.active {
                left: 0;
            }
            .nav-menu li {
                margin: 1rem 0;
            }
            .burger-menu {
                display: flex;
            }
            .burger-menu.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            .burger-menu.active .line2 {
                opacity: 0;
            }
            .burger-menu.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }

