        :root {
            --sunset-orange: #e88a64;
            --deep-teal: #4a7c6d;
            --vintage-cream: #f4e9d5;
            --palm-green: #5a824b;
        }

        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Montserrat', sans-serif;
            background-color: var(--vintage-cream);
            color: #333;
            scroll-behavior: smooth;
        }

        /* --- Hero Section --- */
        header {
            min-height: 50vh;
            background: linear-gradient(to bottom, #f0a37d, #f4e9d5);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            padding: 30px 20px;
        }

        .logo-area h1 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            color: var(--deep-teal);
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .tagline {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: clamp(1rem, 4vw, 1.5rem);
            color: #555;
            margin-top: 10px;
        }

        /* --- Animated Palm Trees --- */
        .palm-tree {
            position: absolute;
            bottom: 0;
            width: 150px;
            height: auto;
            z-index: 1;
            opacity: 0.6;
            transform-origin: bottom center;
            animation: sway 6s ease-in-out infinite alternate;
        }
        .palm-left { left: 2%; }
        .palm-right { right: 2%; animation-delay: 1.5s; }

        @keyframes sway {
            0% { transform: rotate(-3deg); }
            100% { transform: rotate(4deg); }
        }

        .cta-box {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            max-width: 600px;
            margin-top: 30px;
            z-index: 2;
            border: 2px solid var(--sunset-orange);
        }

        .features {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
            font-weight: bold;
            color: var(--deep-teal);
        }

        .btn {
            background-color: var(--sunset-orange);
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(232, 138, 100, 0.4);
        }

        /* --- Form Section --- */
        .contact-section {
            padding: 30px 20px;
            background-color: white;
            text-align: center;
        }

        .form-container {
            max-width: 600px;
            margin: 20px auto;
            text-align: left;
            background: var(--vintage-cream);
            padding: 30px 40px;
            border-radius: 15px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--deep-teal);
        }

        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            box-sizing: border-box;
        }

        /* --- Consent and Privacy Sections --- */
        .consent-section {
            margin: 25px 0;
            padding: 15px;
            background: white;
            border-radius: 8px;
            border: 2px solid var(--deep-teal);
        }

        .consent-label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-weight: normal;
            cursor: pointer;
        }

        .consent-label input[type="checkbox"] {
            width: auto;
            margin-top: 3px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .privacy-notice {
            margin: 20px 0;
            padding: 15px;
            background: #f9f9f9;
            border-left: 4px solid var(--sunset-orange);
            border-radius: 4px;
        }

        .privacy-notice p {
            margin: 0;
            line-height: 1.6;
        }

        .privacy-notice a {
            color: var(--deep-teal);
            text-decoration: underline;
        }

        .footer-links {
            margin-top: 15px;
            font-size: 0.95rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.9;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        /* --- Legal Sections --- */
        .legal-section {
            padding: 50px 20px;
            background-color: #fafafa;
        }

        .legal-section:nth-of-type(odd) {
            background-color: white;
        }

        .legal-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: left;
        }

        .legal-container h2 {
            font-family: 'Oswald', sans-serif;
            color: var(--deep-teal);
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-align: center;
        }

        .legal-container h3 {
            font-family: 'Oswald', sans-serif;
            color: var(--deep-teal);
            font-size: 1.4rem;
            margin-top: 30px;
            margin-bottom: 10px;
        }

        .legal-container p {
            line-height: 1.8;
            margin-bottom: 15px;
            color: #333;
        }

        .legal-container ul {
            line-height: 1.8;
            margin-bottom: 15px;
            padding-left: 25px;
        }

        .legal-container li {
            margin-bottom: 8px;
        }

        .last-updated {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-bottom: 30px;
        }

        h2 { font-family: 'Oswald', sans-serif; color: var(--deep-teal); font-size: 2.5rem; margin-top: 0; }

        footer {
            background: var(--deep-teal);
            color: white;
            padding: 60px 20px;
            text-align: center;
        }

        .palm-svg { fill: var(--palm-green); }

        @media (max-width: 768px) {
            .palm-tree { width: 80px; }
            .features { flex-direction: column; gap: 10px; }
        }