@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');
        
        :root {
            --color-primary: #1F2739;
            --color-secondary: #C85C5C;
            --color-accent: #E0B19E;
            --color-text: #F8EFEA;
            --color-bg: #1F2739;
            --color-contrast: #F8EFEA;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            background-color: var(--color-bg);
            color: var(--color-text);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background-color: var(--color-primary);
            color: var(--color-contrast);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-accent);
            text-decoration: none;
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        .menu-toggle span {
            height: 3px;
            width: 25px;
            background-color: var(--color-contrast);
            margin: 4px 0;
            transition: all 0.3s ease-in-out;
        }
        nav ul {
            list-style: none;
            display: flex;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: var(--color-contrast);
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }
        nav ul li a:hover {
            color: var(--color-accent);
        }
        main {
            padding-top: 100px;
            min-height: calc(100vh - 100px - 100px);
        }
        h1, h2 {
            font-family: 'Playfair Display', serif;
            color: var(--color-secondary);
            margin-bottom: 20px;
            margin-top: 40px;
        }
        h1 { font-size: 2.5rem; }
        h2 { font-size: 1.8rem; }
        p {
            margin-bottom: 15px;
        }
        ul {
            margin-bottom: 15px;
            padding-left: 20px;
        }
        li {
            margin-bottom: 5px;
        }
        footer {
            background-color: var(--color-primary);
            color: var(--color-contrast);
            padding: 40px 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            text-align: left;
            margin-bottom: 20px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin: 20px;
        }
        .footer-section h4 {
            font-family: 'Playfair Display', serif;
            color: var(--color-accent);
            margin-bottom: 15px;
        }
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        .footer-section ul li {
            margin-bottom: 10px;
        }
        .footer-section ul li a {
            color: var(--color-contrast);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section ul li a:hover {
            color: var(--color-secondary);
        }
        .disclaimer {
            text-align: center;
            font-size: 0.8rem;
            color: #ccc;
            margin-top: 20px;
            padding: 10px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .disclaimer p {
            margin-bottom: 5px;
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            nav {
                position: fixed;
                
                left: 0;
                width: 100%;
                background-color: var(--color-primary);
                transform: translateY(-100%);
                transition: transform 0.5s ease-in-out;
                z-index: 999;
                padding: 20px 0;
            }
            nav.active {
                transform: translateY(0);top: 60px;
            }
            nav ul {
                flex-direction: column;
                text-align: center;
            }
            nav ul li {
                margin: 10px 0;
            }
        }

