* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #1a5f1a;
            --dark-green: #0d3320;
            --light-green: #90EE90;
            --bright-green: #4CAF50;
            --accent-orange: #FF6B35;
            --text-dark: #1a1a2e;
            --text-gray: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
        }

        body {
            font-family: "Space Grotesk", sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

             /* Navigation */
        .navbar {
            background: var(--white);
            padding: 1rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-green);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-green);
        }

        .nav-icons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .nav-icons i {
            font-size: 1.2rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        .btn-explore {
            background: var(--bright-green);
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-explore:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }
        .menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-green);
        transition: color 0.3s;
        }

        .menu-toggle:hover {
            color: var(--bright-green);
        }


        /* Page Header */
        .page-header {
            margin-top: 80px;
            background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
            color: var(--white);
            padding: 4rem 5%;
            text-align: center;
            position: relative;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .page-header p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .last-updated {
            margin-top: 1rem;
            font-size: 0.85rem;
            opacity: 0.7;
        }

        /* Terms Content */
        .terms-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 5%;
        }

        .terms-nav {
            background: var(--white);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border: 1px solid #eef2f0;
            position: sticky;
            top: 90px;
        }

        .terms-nav h3 {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: var(--text-dark);
        }

        .terms-nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .terms-nav-link {
            background: var(--bg-light);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            text-decoration: none;
            font-size: 0.85rem;
            color: var(--text-gray);
            transition: all 0.3s;
        }

        .terms-nav-link:hover {
            background: var(--bright-green);
            color: var(--white);
        }

        /* Terms Sections */
        .terms-sections {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .terms-section {
            background: var(--white);
            border-radius: 24px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border: 1px solid #eef2f0;
            scroll-margin-top: 100px;
        }

        .terms-section h2 {
            font-size: 1.6rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-green);
            display: inline-block;
        }

        .terms-section h3 {
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem 0;
            color: var(--text-dark);
        }

        .terms-section p {
            color: var(--text-gray);
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .terms-section ul, .terms-section ol {
            margin: 1rem 0 1rem 2rem;
            color: var(--text-gray);
        }

        .terms-section li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .terms-section .highlight {
            background: var(--bg-light);
            padding: 1rem;
            border-radius: 12px;
            margin: 1rem 0;
            border-left: 4px solid var(--bright-green);
        }

        .terms-section .warning-box {
            background: #fff3e0;
            padding: 1rem;
            border-radius: 12px;
            margin: 1rem 0;
            border-left: 4px solid var(--accent-orange);
        }

        /* Acceptance Section */
        .acceptance-section {
            background: var(--bg-light);
            border-radius: 24px;
            padding: 2rem;
            margin-top: 2rem;
            text-align: center;
        }

        .acceptance-section p {
            margin-bottom: 1.5rem;
            color: var(--text-gray);
        }

        .btn-accept {
            background: var(--bright-green);
            color: var(--white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-size: 1rem;
        }

        .btn-accept:hover {
            background: var(--primary-green);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }

        /* Footer */
        footer {
            background: var(--dark-green);
            color: var(--white);
            padding: 4rem 5% 2rem;
            margin-top: 3rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 1rem;
        }

        .footer-brand p {
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--bright-green);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-column ul li a:hover {
            opacity: 1;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--white);
            text-decoration: none;
            margin-left: 1rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }
            .page-header h1 {
                font-size: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .terms-nav {
                position: static;
                margin-bottom: 1.5rem;
            }
            .terms-section {
                padding: 1.5rem;
            }
            .terms-section h2 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 768px) {
        .navbar {
            padding: 1rem 4%;
        }

        

        .menu-toggle {
            display: block;
            order: 2;
        }

        .nav-links {
            display: none;
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            background: var(--white);
            flex-direction: column;
            gap: 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            z-index: 999;
        }

        .nav-links.active {
            display: flex;
        }

        .nav-links a {
            padding: 1rem 5%;
            border-bottom: 1px solid #e0e0e0;
        }

        .btn-explore {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }
    }