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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #f5f7fb;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
  padding-bottom: 80px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 5%;
}

.logo {
  font-size: 30px;
  font-weight: 700;
}

.logo span {
  color: #60a5fa;
}

.nav-btn {
  background: white;
  color: #0f172a;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 50px auto 0;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #93c5fd;
  margin-bottom: 15px;
  font-size: 14px;
}

.hero-text h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-description {
  font-size: 18px;
  color: #dbeafe;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 15px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

.primary-btn {
  background: #2563eb;
  color: white;
}

.secondary-btn {
  border: 2px solid white;
  color: white;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  padding: 35px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.hero-card h3 {
  margin-bottom: 20px;
  font-size: 28px;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  margin-bottom: 14px;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  width: 90%;
  max-width: 1100px;
  margin: -50px auto 50px;
}

.stat-box {
  background: white;
  padding: 35px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stat-box h2 {
  font-size: 42px;
  color: #1d4ed8;
}

.content-section {
  padding: 90px 0;
}

.light-bg {
  background: white;
}

.dark-bg {
  background: #f1f5f9;
}

.content-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 50px;
}

.feature-list {
  margin-top: 20px;
  padding-left: 20px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 20px;
}

.card h3 {
  margin-bottom: 15px;
}

.manifesto-section {
  background: linear-gradient(135deg,#0f172a,#111827);
  color: white;
  text-align: center;
}

blockquote {
  font-size: 28px;
  font-weight: 600;
  margin: 30px 0;
  line-height: 1.5;
}

.registration-section {
  padding: 100px 0;
  background: #e0ecff;
}

.registration-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.registration-benefits {
  margin-top: 30px;
  list-style: none;
}

.registration-benefits li {
  margin-bottom: 15px;
}

.registration-form {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.registration-form h3 {
  margin-bottom: 25px;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 15px;
}

.registration-form button {
  width: 100%;
  padding: 16px;
  background: #1d4ed8;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.checkbox {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.form-message {
  margin-top: 15px;
  font-weight: 600;
  color: green;
}

footer {
  background: #0f172a;
  color: white;
  padding: 50px 0;
  text-align: center;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  color: #cbd5e1;
  margin: 0 10px;
  text-decoration: none;
}

.copyright {
  color: #94a3b8;
  font-size: 14px;
}

@media(max-width: 992px) {
  .hero-content,
  .grid-2,
  .registration-wrapper,
  .cards-grid,
  .stats-section {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .cards-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .content-section h2 {
    font-size: 32px;
  }

  blockquote {
    font-size: 22px;
  }
}