        :root {
            --primary: #1a3a2e;
            --accent: #5d8a66;
            --accent-light: #7fb685;
            --bg: #e8f0e8;
            --card: #ffffff;
            --text: #2d3d2d;
            --text-light: #5a6a5a;
            --border: #c8d8c8;
            --forest: #2d4a3e;
            --moss: #8ba888;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Work Sans', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        a {
            color:var(--primary);
        }

        /* Header */
        header {
            background: var(--primary);
            color: white;
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
            background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"%3E%3Crect fill="%231a3a2e" width="800" height="400"/%3E%3Cg opacity="0.12"%3E%3C!-- House --%3E%3Crect x="500" y="180" width="200" height="150" fill="%23fff"/%3E%3Cpath d="M 480 180 L 600 120 L 720 180 Z" fill="%23fff"/%3E%3Crect x="530" y="250" width="40" height="80" fill="%234a4a4a"/%3E%3Crect x="620" y="210" width="50" height="50" fill="%234a4a4a"/%3E%3C!-- Ground --%3E%3Crect x="0" y="330" width="800" height="70" fill="%232d4a3e"/%3E%3C!-- Wall foundation --%3E%3Crect x="450" y="320" width="300" height="10" fill="%23555"/%3E%3C!-- Person silhouette --%3E%3Cellipse cx="350" cy="280" rx="15" ry="20" fill="%23fff"/%3E%3Ccircle cx="350" cy="250" r="12" fill="%23fff"/%3E%3Cline x1="350" y1="262" x2="340" y2="295" stroke="%23fff" stroke-width="4"/%3E%3Cline x1="350" y1="270" x2="365" y2="285" stroke="%23fff" stroke-width="4"/%3E%3C!-- Trap on ground --%3E%3Crect x="360" y="318" width="20" height="8" fill="%23888" rx="1"/%3E%3Crect x="365" y="314" width="10" height="4" fill="%23666"/%3E%3C!-- More traps along wall --%3E%3Crect x="480" y="318" width="18" height="8" fill="%23888" rx="1"/%3E%3Crect x="550" y="318" width="18" height="8" fill="%23888" rx="1"/%3E%3Crect x="620" y="318" width="18" height="8" fill="%23888" rx="1"/%3E%3C!-- Trees in background --%3E%3Cpath d="M 100 280 L 120 200 L 140 280 Z" fill="%23fff" opacity="0.6"/%3E%3Cpath d="M 200 260 L 220 180 L 240 260 Z" fill="%23fff" opacity="0.5"/%3E%3C/g%3E%3C/svg%3E');
            background-size: cover;
            background-position: center;
        }

        header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 60%;
            height: 200%;
            background: linear-gradient(135deg, transparent 0%, rgba(93, 138, 102, 0.15) 50%, transparent 100%);
            transform: rotate(-15deg);
            animation: slideIn 1.5s ease-out;
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%) rotate(-15deg);
                opacity: 0;
            }
            to {
                transform: translateX(0) rotate(-15deg);
                opacity: 1;
            }
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
            animation: fadeDown 0.8s ease-out;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo svg {
            width: 60px;
            height: 60px;
            fill: var(--accent-light);
            animation: fadeDown 0.8s ease-out, float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }



        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tagline {
            font-size: 1.8rem;
            margin-top: 2rem;
            font-weight: 600;
            max-width: 700px;
            line-height: 1.4;
            animation: fadeUp 1.2s ease-out;
            color: var(--accent-light);
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Main Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        /* Intro Section */
        .intro {
            background: var(--card);
            padding: 2.5rem;
            border-left: 6px solid var(--accent);
            margin-bottom: 3rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            animation: fadeIn 1.4s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .intro h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            letter-spacing: 0.03em;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .intro p {
            font-size: 1.1rem;
            color: var(--text-light);
        }

        /* Section Headers */
        .section-header {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.8rem;
            letter-spacing: 0.05em;
            margin: 3rem 0 2rem;
            position: relative;
            display: inline-block;
        }

        .section-header::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent);
        }

        /* Grid Layout */
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .guide-card {
            background: var(--card);
            padding: 2rem;
            border-radius: 4px;
            border-top: 3px solid var(--accent);
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            animation: cardFadeIn 0.6s ease-out backwards;
            display: flex;
            flex-direction: column;
        }

        @keyframes cardFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .guide-card:nth-child(1) { animation-delay: 0.1s; }
        .guide-card:nth-child(2) { animation-delay: 0.2s; }
        .guide-card:nth-child(3) { animation-delay: 0.3s; }
        .guide-card:nth-child(4) { animation-delay: 0.4s; }
        .guide-card:nth-child(5) { animation-delay: 0.5s; }
        .guide-card:nth-child(6) { animation-delay: 0.6s; }

        .guide-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }

        .guide-card h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            letter-spacing: 0.03em;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .guide-card ul {
            list-style: none;
            padding-left: 0;
            flex-grow: 1;
        }

        .guide-card li {
            padding: 0.6rem 0;
            padding-left: 1.5rem;
            position: relative;
            border-bottom: 1px solid var(--border);
        }

        .guide-card li:last-child {
            border-bottom: none;
        }

        .guide-card li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        .guide-card .more-info-btn {
            display: inline-block;
            margin-top: auto;
            padding: 0.6rem 1.5rem;
            background: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .guide-card .more-info-btn:hover {
            background: var(--forest);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        /* Warning Box */
        .warning-box {
            background: linear-gradient(135deg, #fffbf0 0%, #fff9e6 100%);
            border-left: 6px solid var(--forest);
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 4px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }

        .warning-box h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            letter-spacing: 0.03em;
            color: var(--forest);
            margin-bottom: 1rem;
        }

        .warning-box ul {
            list-style: none;
            padding-left: 0;
        }

        .warning-box li {
            padding: 0.5rem 0;
            padding-left: 1.8rem;
            position: relative;
        }

        .warning-box li::before {
            content: '⚠';
            position: absolute;
            left: 0;
            color: var(--accent);
        }

        /* Tips Section */
        .tips-section {
            background: var(--primary);
            color: white;
            padding: 3rem 2rem;
            margin: 3rem -2rem;
        }

        .tips-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .tips-section h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.8rem;
            letter-spacing: 0.05em;
            margin-bottom: 2rem;
        }

        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .tip-item {
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 4px;
            border-left: 3px solid var(--accent-light);
        }

        .tip-item strong {
            display: block;
            color: var(--accent-light);
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
        }

        /* Resources */
        .resources {
            background: var(--card);
            padding: 2.5rem;
            margin-top: 0;
            border-radius: 4px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }

        .resources h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .resource-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .resource-item {
            padding: 1rem;
            background: var(--bg);
            border-radius: 4px;
            font-weight: 600;
        }

        /* FAQ Section */
        .faq {
            background: var(--card);
            padding: 2.5rem;
            margin-top: 3rem;
            border-radius: 4px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }

        .faq h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            letter-spacing: 0.05em;
            margin-bottom: 2rem;
            color: var(--primary);
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 2px solid var(--border);
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--accent);
        }

        .faq-question {
            font-family: 'Work Sans', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--forest);
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            background: var(--bg);
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            user-select: none;
        }

        .faq-question:hover {
            background: #dce8dc;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--accent);
            font-weight: bold;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            color: var(--text-light);
            line-height: 1.7;
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 1.5rem;
        }

        /* Contact Form */
        .contact-form {
            background: linear-gradient(135deg, var(--forest) 0%, var(--primary) 100%);
            color: white;
            padding: 3rem 2.5rem;
            margin-top: 3rem;
            border-radius: 4px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }

        .contact-form h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
            color: white;
        }

        .contact-form .cta {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--accent-light);
            font-weight: 600;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            letter-spacing: 0.03em;
        }

        .form-group input,
        .form-group select {
            padding: 0.75rem;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-family: 'Work Sans', sans-serif;
            background: white;
            color: var(--text);
        }

        .form-group select {
            cursor: pointer;
        }

        .submit-btn {
            background: var(--accent-light);
            color: var(--primary);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 4px;
            font-size: 1.1rem;
            font-weight: 700;
            font-family: 'Work Sans', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        .submit-btn:hover {
            background: var(--moss);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        /* Privacy */

        #privacy ul {
            padding:12px 0px;
        }

        #privacy ul li {
            margin-left:15px;
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: 3rem;
        }

        footer p {
            opacity: 0.7;
            font-size: 0.9rem;
        }

        footer a {
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .logo {
                font-size: 3rem;
            }

            .logo svg {
                width: 50px;
                height: 50px;
            }
            
            .tagline {
                font-size: 1.3rem;
            }
            
            .section-header {
                font-size: 2.2rem;
            }

            .guide-grid {
                grid-template-columns: 1fr;
            }

            .tips-section {
                margin-left: -1rem;
                margin-right: -1rem;
            }
        }
