/* RESET / BASIC STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* NAVIGATION */
.navbar {
  background-color: #f6f6f6;
  padding: 1rem 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
}
.nav-links a {
  margin-left: 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* BUTTON GROUP */
.button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem; /* Space between buttons */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  margin-top: 1.5rem; /* Space above the buttons */
}

/* BUTTON STYLES */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-align: center;
}

/* PRIMARY BUTTON */
.btn-primary {
  background-color: #007BFF;
  color: #fff !important;
}
.btn-primary:hover {
  background-color: #0056b3;
}

/* SECONDARY BUTTON */
.btn-secondary {
  background-color: #555;
  color: #fff !important;
}
.btn-secondary:hover {
  background-color: #333;
}

/* Add this new section for button containers */
.button-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Update the how-it-works section */
.how-it-works .button-container {
  margin-top: 3rem;
}

/* Update the pricing section */
.pricing-box .btn-primary {
  display: block;
  width: 100%;
  margin-top: 2rem;
}

/* Add new button style */
.btn-dark {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  background-color: #111827;
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s;
}

.btn-dark:hover {
  background-color: #1F2937;
}

/* Update how-it-works button container */
.how-it-works .button-container {
  margin-top: 3rem;
}

/* Update pricing styles */
.pricing {
  text-align: center;
  padding: 3rem 0;
  background-color: #fafafa;
}

.pricing .container > h2,
.pricing .container > p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing h2 {
  margin-bottom: 1rem;
}

.pricing-box {
  background-color: #fff;
  padding: 2rem;
  max-width: 600px;
  margin: 2rem auto 0 auto;
  border-radius: 5px;
  border: 1px solid #eee;
  text-align: center;
}

.pricing-box ul {
  list-style: none;
  margin: 1.5rem auto;
  padding-left: 0;
  max-width: 400px;
}

.pricing-box li {
  margin-bottom: 0.8rem;
  text-align: left;
  position: relative;
  padding-left: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.pricing-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007BFF;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.2;
  top: 0;
}

.price {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-left: 0.5rem;
}

.note {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Update the pricing box button */
.pricing-box .btn-primary {
  display: inline-block;
  padding: 0.7rem 1.2rem; /* Match the nav button padding */
  width: auto;
  min-width: 0; /* Remove min-width */
  margin-top: 1.5rem;
}

/* HERO */
.hero {
  background-color: #fafafa;
  padding: 3rem 0;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* WHY VALIDATE */
.why-validate {
  padding: 3rem 0;
  text-align: center;
}
.why-validate h2 {
  margin-bottom: 1rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-item {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 5px;
}
.feature-item h3 {
  margin-bottom: 0.5rem;
}

/* HOW IT WORKS */
.how-it-works {
  background-color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.how-it-works h2 {
  margin-bottom: 1rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.step {
  background-color: #f6f6f6;
  padding: 1.5rem;
  border-radius: 5px;
  position: relative;
}
.step-number {
  font-size: 2rem;
  font-weight: bold;
  color: #007BFF;
  display: inline-block;
  margin-bottom: 1rem;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #fafafa;
  padding: 3rem 0;
  text-align: center;
}
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 5px;
  border: 1px solid #eee;
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

/* COMPARE */
.compare {
  padding: 3rem 0;
  background-color: #fff;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.compare-grid h3 {
  margin-bottom: 1rem;
}
.compare-grid ul {
  list-style: none;
}
.compare-grid ul li {
  margin-bottom: 0.5rem;
}

/* FAQ */
.faq {
  padding: 3rem 0;
}
.faq-item {
  margin-bottom: 2rem;
}
.faq-item h3 {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

/* FINAL CTA */
.final-cta {
  background-color: #f6f6f6;
  padding: 3rem 0;
  text-align: center;
}
.final-cta h2 {
  margin-bottom: 1rem;
}
.final-cta p {
  margin-bottom: 1.5rem;
}

/* FOOTER */
.footer {
  background-color: #333;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-links a {
  color: #fff;
  margin: 0 0.5rem;
  text-decoration: none;
}
.footer-logo {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 600px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-box {
    padding: 1.5rem;
  }
}