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

body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-text,
.footer-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #1e40af;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #1e40af;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: #1e40af;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #1e3a8a;
}

.btn-secondary {
  background-color: #ffffff;
  color: #1e40af;
  border: 2px solid #1e40af;
}

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

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

.hero {
  background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
  padding: 120px 0;
}

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

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-description {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 32px;
  line-height: 1.8;
}

.features {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  padding: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.3s;
}

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

.feature-icon {
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.feature-description {
  color: #6b7280;
  line-height: 1.7;
}

.testimonials {
  padding: 80px 0;
  background-color: #f9fafb;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.testimonial-text {
  color: #4b5563;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #1f2937;
  font-weight: 600;
}

.testimonial-author span {
  color: #6b7280;
  font-size: 14px;
}

.pricing {
  padding: 80px 0;
  background-color: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.pricing-card {
  padding: 40px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
  border-color: #1e40af;
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #1e40af;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-plan {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.pricing-description {
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-price {
  margin-bottom: 32px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: #1e40af;
}

.price-period {
  color: #6b7280;
  font-size: 18px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 12px 0;
  color: #4b5563;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-features li:first-child {
  border-top: 1px solid #e5e7eb;
}

.footer {
  background-color: #1f2937;
  color: #ffffff;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-text {
  color: #ffffff;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #374151;
}

.footer-bottom p {
  color: #9ca3af;
}

.legal-page {
  padding: 80px 0;
  background-color: #ffffff;
}

.legal-title {
  font-size: 42px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 40px;
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  color: #4b5563;
  margin-bottom: 8px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .nav {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .features {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }

  .legal-title {
    font-size: 32px;
  }
}
