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

:root {
  --primary-color: #0066FF;
  --secondary-color: #6B7280;
  --background-color: #F3F4F6;
  --text-color: #1F2937;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: linear-gradient(135deg, #EEF2FF 0%, #F3F4F6 100%);
  background-color: #F3F4F6;
  min-height: 100vh;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background-image: linear-gradient(135deg, #FF1493, #0066FF);
  color: #0066FF;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.hero {
  padding: 8rem 5% 4rem;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.logo-hero {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-text-large {
  font-size: 3rem;
  font-weight: 700;
  background-image: linear-gradient(135deg, #FF1493, #0066FF);
  color: #0066FF;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-top: 0.5rem;
  text-transform: lowercase;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background-image: linear-gradient(135deg, var(--text-color) 30%, var(--primary-color));
  color: var(--text-color);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #0052cc;
}

.btn-secondary {
  background-color: white;
  color: var(--text-color);
  border: 1px solid #E5E7EB;
}

.btn-secondary:hover {
  background-color: #F9FAFB;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 5%;
  background: white;
  border-radius: 16px;
  margin: 2rem 5%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-card {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: #E5E7EB;
}

.counter {
  font-size: 3.5rem;
  font-weight: 700;
  background-image: linear-gradient(135deg, #FF1493, #0066FF);
  color: #0066FF;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: var(--secondary-color);
  font-size: 1.1rem;
  font-weight: 500;
}

.content-page {
  padding: 8rem 5% 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.content-section {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.intro-text {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.policy-section {
  margin-bottom: 3rem;
}

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

.policy-section h2 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.policy-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-section ul {
  list-style-type: none;
  margin: 1rem 0;
}

.policy-section ul li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.policy-section ul li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 2rem;
  color: var(--secondary-color);
  background: white;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero {
    padding: 6rem 1rem 2rem;
  }

  .stats {
    margin: 2rem 1rem;
    grid-template-columns: 1fr;
  }

  .stat-card:not(:last-child)::after {
    display: none;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .logo-text-large {
    font-size: 2.5rem;
  }

  .content-page {
    padding: 6rem 1rem 2rem;
  }

  .content-section {
    padding: 1.5rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}
