 
        :root {
            --primary: #3B82F6;
            --primary-dark: #2563EB;
            --secondary: #8B5CF6;
            --accent: #06B6D4;
            --light: #F8FAFC;
            --dark: #1E293B;
            --gray: #64748B;
            --gray-light: #E2E8F0;
            --success: #10B981;
            --warning: #F59E0B;
            --error: #EF4444;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --transition: all 0.3s ease;
        }
        :root {
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light; /* ignore system dark mode */
  }
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background-color: #ffffff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: transparent;
            backdrop-filter: blur(15px);
            transition: var(--transition);
        }
        
        header.scrolled {
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(15px);
            box-shadow: var(--shadow);
            
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--primary);
            text-decoration: none;
        }
        
        .logo img {
            height: 40px;
            width: 40px;
            margin-right: 10px;
            margin-left: 10px;
            border-radius: 50%;
        }
        

        .btn {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 500;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
        }
        
        .nav-links {
    display: flex;
    gap: 20px;
    margin-right: 20px;
}

.nav-link {
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -3px;
    background-color: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-dark); /* slightly darker on hover */
}

.nav-link:hover::after {
    width: 100%;
}
        
        .btn-sm {
            padding: 6px 12px;
            font-size: 0.85rem;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: var(--shadow);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-light {
            background-color: var(--gray-light);
            color: var(--dark);
        }
        
        .btn-light:hover {
            background-color: var(--gray);
            color: white;
        }
        
        
        .hero {
            padding: 160px 0 100px;
            position: relative;
            overflow: hidden;
            background: white;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-text {
            flex: 1;
            max-width: 600px;
        }
        
        .hero-heading {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .hero-heading span {
            color: var(--primary);
        }
        
        .hero-subheading {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 30px;
            font-weight: 400;
        }
        
        .highlight {
            background-color: rgba(59, 130, 246, 0.1);
            padding: 2px 8px;
            border-radius: 4px;
            color: var(--primary);
            font-weight: 500;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            transform: perspective(800px) rotateY(-10deg);
            transition: var(--transition);
        }
        
        .hero-image img:hover {
            transform: perspective(800px) rotateY(0);
        }
        
        .intro {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .intro-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .intro-text {
            flex: 1;
        }
        
        .intro-heading {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .intro-description {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 30px;
        }
        
        .intro-features {
            list-style: none;
        }
        
        .intro-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .intro-feature i {
            color: var(--success);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .intro-image {
            flex: 1;
            text-align: center;
        }
        
        .intro-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow-lg);
        }
        
        .features {
            padding: 100px 0;
            background-color: #F8FAFC;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-card {
            padding: 30px;
            transition: var(--transition);
            text-align: center;
        }
        
        .feature-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }
        
        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #0088cc; /* Telegram blue */
        }
        
        .feature-description {
            color: var(--gray);
        }
        
        .goals {
            padding: 100px 0;
            background-color: white;
        }
        
        .goals-container {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }
        
        .goal-item {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .goal-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .goal-content {
            flex: 1;
        }
        
        .goal-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #0088cc; /* Telegram blue */;
        }
        
        .goal-description {
            color: var(--gray);
            font-size: 1.1rem;
        }
        
        .goal-image {
            flex: 1;
            text-align: center;
        }
        
        .goal-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow-lg);
        }
        

.footer {
  width: 100%;
  padding: 12px 0;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  background: #fff;
  margin-top: 40px; /* space before footer */
  margin-bottom: 10px;
}

.footer-links a {
  margin: 0 6px;
  font-size: 14px;
  color: #0088cc; /* Telegram blue */
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}
        
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                margin-bottom: 50px;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .intro-content {
                flex-direction: column;
            }
            
            .goal-item, .goal-item:nth-child(even) {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {

            .hero-heading {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        .policy-hero {
            padding: 160px 0 60px;
            background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
            text-align: center;
        }
        
        .policy-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .last-updated {
            color: var(--gray);
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        
        .policy-content {
            padding: 80px 0;
            background-color: white;
        }
        
        .policy-section {
            margin-bottom: 60px;
        }
        
        .policy-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--gray-light);
        }
        
        .policy-section h3 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: var(--primary-dark);
        }
        
        .policy-section p, .policy-section ul {
            margin-bottom: 20px;
            color: var(--gray);
            line-height: 1.8;
        }
        
        .policy-section ul {
            padding-left: 30px;
        }
        
        .policy-section li {
            margin-bottom: 10px;
        }
        

        @media (max-width: 768px) {
            .policy-hero h1 {
                font-size: 2.5rem;
            }
        }
        
@media (min-width: 768px) {
  [data-aos] {
    overflow: visible !important;
  }
  [data-aos="fade-left"] {
    transform: translateX(-20px);
  }
  [data-aos="fade-right"] {
    transform: translateX(20px);
  }
}
