/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.min-h-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.text-center {
  text-align: center;
}

/* Header styles */
header {
  padding: 24px 24px;
  margin: 10px;
  position: relative;

  background: rgba(255, 255, 255, 0.95);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #2563eb;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #1d4ed8;
}

/* Hero section styles */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 120px 0 60px;
}

.bg-gradient {
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 50%, #ffffff 100%);
}

.hero-title {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1e40af;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: #4b5563;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background-color: #2563eb;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
}

.cta-button:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(37, 99, 235, 0.2);
}

/* How it works section styles */
.how-it-works {
  background-color: #ffffff;
  padding: 100px 0;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 60px;
  text-align: center;
  color: #1e40af;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 32px;
  background: #f8fafc;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  background-color: #dbeafe;
  color: #2563eb;
  font-size: 24px;
  font-weight: bold;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
}

.step h4 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1e40af;
}

.step p {
  color: #4b5563;
  line-height: 1.6;
}

/* Footer styles */
footer {
  background-color: #f8fafc;
  padding: 24px 0;
  margin-top: auto;
}

footer p {
  color: #6b7280;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }

  .steps {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
    padding: 0 24px;
  }

  .hero-subtitle {
    font-size: 18px;
    padding: 0 24px;
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .step {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 16px 0;
  }

  .logo {
    font-size: 24px;
  }

  .nav-links {
    flex-direction: column;
    gap: 12px;
    position: absolute;
    top: 100%;
    right: 24px;
    background: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none; /* Add JavaScript to toggle this */
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 16px;
  }
}
