/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}
header {
  background: #003366; /* Dark blue background for header */
  padding: 20px 0;
  color: #fff; /* Set text color to white for readability */
}
/* Remove the image in the header */
header .logo img {
width: 220px;
}

header .logo {
  display: inline-block;
  vertical-align: middle;
}

header .call-button {
  display: inline-block;
  vertical-align: middle;
  float: right;
  padding-top: 20px;
}

.btn-call {
  background: #ff6600;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Hero Section Styles */
.hero {
  background: #0055A5; /* Lighter blue background for hero section */
  color: #fff;
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

/* Fix the button in the hero section */
.hero .btn-primary {
  background: #ff6600;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  display: inline-block;
  margin-top: 20px;
  transition: background 0.3s ease; /* Smooth transition for hover effect */
}

.hero .btn-primary:hover {
  background: #e65c00;
  /* Optionally, add a subtle box-shadow for better visual feedback */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
section {
  padding: 100px 0;
  text-align: center;
}

section h2 {
  font-size: 3em;
  margin-bottom: 30px;
}

section h3 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

section p {
  font-size: 1.2em;
  margin-bottom: 40px;
}

/* How We Help Section */
.how-help {
  background: #f9f9f9;
}

/* Disputable Items Styles */
.disputable-items {
  background: #ffffff;
}

.disputable-items .item-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn-secondary {
  background: #eee;
  color: #333;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
}

/* Steps Section */
.steps {
  background: #f9f9f9;
}

.steps .step-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.steps .step {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  text-align: left;
}

.steps .step h3 {
  font-size: 2.2em;
  margin-bottom: 15px;
}

.steps .step p {
  font-size: 1.1em;
}

/* Testimonials Section */
.testimonials {
  background: #ffffff;
}

.testimonials .testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.testimonials .testimonial {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 5px;
  max-width: 800px;
}

.testimonials h4 {
  margin-top: 20px;
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  background: #003366; /* Dark blue background */
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 3em;
  margin-bottom: 30px;
}

.cta-section p {
  font-size: 1.3em;
  margin-bottom: 40px;
}

.cta-section .btn-primary {
  background: #ff6600;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
}

.cta-section .small-text {
  font-size: 1em;
  margin-top: 15px;
}

/* Footer Styles */
footer {
  background: #333;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

footer .footer-links {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

footer .footer-links li {
  display: inline;
  margin: 0 15px;
}

footer .footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
}

/* Media Queries */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 2.5em;
  }

  section h2 {
      font-size: 2.5em;
  }

  section h3 {
      font-size: 2em;
  }

  .btn-primary,
  .btn-secondary {
      font-size: 1em;
      padding: 12px 25px;
  }

  .steps .step-columns {
      flex-direction: column;
  }

  .steps .step {
      margin-bottom: 30px;
  }

  header .call-button {
      float: none;
      text-align: center;
      margin-top: 20px;
  }
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: #ffffff;
  text-align: left;
}

.faq h1 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 50px;
  color: #003366;
}

.faq-item {
  margin-bottom: 40px;
}

.faq-item h3 {
  font-size: 1.8em;
  color: #0055A5;
  margin-bottom: 15px;
}

.faq-item p {
  font-size: 1.2em;
  color: #333;
  line-height: 1.6;
}

/* Optional: Hover effect on FAQ questions */
.faq-item h3:hover {
  color: #ff6600;
  cursor: pointer;
}

/* Footer Links */
footer .footer-links li a[href*="faq.html"] {
  text-decoration: underline;
}
