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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #2c5f41;
            min-height: 100vh;
            line-height: 1.6;
        }

   
        .container {
            max-width: 1000px;
            margin: 20px auto 20px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .header {
            background: #2c3e50;
            color: white;
            padding: 50px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: float 20s linear infinite;
        }

        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-50px, -50px) rotate(360deg); }
        }

        .header h1 {
            font-size: 3em;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .header .subtitle {
            font-size: 1.3em;
            opacity: 0.9;
            position: relative;
            z-index: 1;
            margin-bottom: 10px;
        }

        .header .description {
            font-size: 1.1em;
            opacity: 0.8;
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }

        .content {
            padding: 50px 30px;
        }

        .intro-section {
            background: linear-gradient(135deg, #f6f8ff 0%, #e8f0fe 100%);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 2px solid #4ecdc4;
            text-align: center;
        }

        .intro-section h2 {
            color: #2c3e50;
            font-size: 2.2em;
            margin-bottom: 20px;
        }

        .intro-section p {
            color: #2d3748;
            font-size: 1.2em;
            line-height: 1.6;
            margin-bottom: 15px;
        }

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

        .policy-section h2 {
            color: #2c3e50;
            font-size: 1.8em;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .policy-section h3 {
            color: #2c3e50;
            font-size: 1.4em;
            margin: 25px 0 15px 0;
            font-weight: 600;
        }

        .policy-section h4 {
            color: #4ecdc4;
            font-size: 1.2em;
            margin: 20px 0 10px 0;
            font-weight: 600;
        }

        .policy-section p {
            color: #2d3748;
            margin-bottom: 15px;
            font-size: 1.05em;
        }

        .policy-section ul {
            margin: 15px 0 15px 20px;
            color: #2d3748;
        }

        .policy-section li {
            margin: 8px 0;
            font-size: 1.05em;
        }

        .policy-section strong {
            color: #2c3e50;
        }

        .highlight-box {
            background: linear-gradient(135deg, #f6f8ff 0%, #e8f0fe 100%);
            border: 2px solid #4ecdc4;
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
            position: relative;
        }

        .highlight-box::before {
            content: 'ℹ️';
            position: absolute;
            top: -12px;
            left: 20px;
            background: white;
            padding: 0 10px;
            font-size: 1.2em;
        }

        .highlight-box p {
            margin: 0;
            font-style: italic;
            color: #2c3e50;
        }

        .contact-section {
            background: #34495e;
            color: white;
            padding: 40px;
            margin: 50px -30px 0;
            text-align: center;
        }

        .contact-section h2 {
            font-size: 2em;
            margin-bottom: 20px;
            color: #4ecdc4;
        }

        .contact-section p {
            font-size: 1.1em;
            margin-bottom: 15px;
        }

        .contact-section strong {
            color: #4ecdc4;
        }

        .contact-section a {
            color: #4ecdc4;
            text-decoration: none;
        }

        .contact-section a:hover {
            text-decoration: underline;
        }

        /* .footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 30px;
            font-size: 0.95em;
        }

        .footer p {
            margin-bottom: 10px;
        }

        .footer a {
            color: #4ecdc4;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        } */

        .last-updated {
            margin-bottom: 30px;
            text-align: center;
            color: #2d3748;
            font-weight: 500;
            font-size: 1.05em;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2em;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .intro-section {
                padding: 25px 20px;
            }

            .contact-section {
                margin: 50px -20px 0;
                padding: 30px 20px;
            }
        }
   