
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #10B981;
            --primary-dark: #079465;
            --dark-green: #0B4D3C;
            --dark-green-deep: #083D30;
            --mint-light: #F0FDF9;
            --mint-lighter: #F7FEFB;
            --dark-bg: #151515;
            --text-primary: #1F2937;
            --text-secondary: #6B7280;
            --bg-light: #F9FAFB;
            --border-color: #E5E7EB;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: white;
        }

        /* Header */
        .header {
            background: var(--dark-bg);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .logo:hover {
            color: var(--primary);
        }

        .logo i {
            color: var(--primary);
            font-size: 1.5rem;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            color: #9CA3AF;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: white;
        }

        .btn-primary {
            background: var(--primary);
            color: white !important;
            padding: 10px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.2s;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
        }

        /* Hero Section */
        .hero {
            background: var(--dark-green);
            color: white;
            padding: 100px 24px;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.125rem;
            color: #D1D5DB;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 24px;
        }

        .policy-section {
            margin-bottom: 80px;
        }

        .policy-section:last-child {
            margin-bottom: 0;
        }

        .section-header {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 80px;
            align-items: flex-start;
        }

        .section-icon {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .section-content h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--text-primary);
        }

        .policy-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .policy-item {
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 24px;
        }

        .policy-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .policy-item h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .policy-item h3 a {
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.2s;
        }

        .policy-item h3 a:hover {
            color: var(--primary);
        }

        .policy-item p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--bg-light);
            padding: 80px 24px;
            margin-top: 80px;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-container h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 40px;
            text-align: center;
        }

        .faq-item {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 16px;
            overflow: hidden;
        }

        .faq-question {
            padding: 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: var(--bg-light);
        }

        .faq-question i {
            color: var(--primary);
            transition: transform 0.3s;
        }

        .faq-answer {
            padding: 0 24px 24px;
            color: var(--text-secondary);
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            color: white;
            padding: 60px 24px 24px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-column h4 {
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
            color: var(--primary);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: #9CA3AF;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .footer-column a:hover {
            color: white;
        }

        .footer-bottom {
            padding-top: 24px;
            border-top: 1px solid #374151;
            text-align: center;
            color: #9CA3AF;
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .section-header {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .section-icon {
                width: 120px;
                height: 120px;
                font-size: 2.5rem;
                margin: 0 auto;
            }

            .nav-links {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
  