/* Base styles */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #2A3B5C;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #FDF6EC;
  border-bottom: 2px solid #E53935;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 96px;   /* doubled from 48px */
  height: 96px;
  margin-right: 0.75rem;
}

.logo h1 {
  font-size: 2rem;
  margin: 0;
  color: #2A3B5C;
}

/* Navigation */
nav {
  position: relative;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 1.8rem;
  display: none;
  cursor: pointer;
  color: #2A3B5C;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: #2A3B5C;
  font-weight: bold;
font-size: 1.2rem;
  transition: color 0.2s ease;
}

.menu li a:hover {
  color: #E53935;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 3rem 2rem;
  background: #ffffff;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #2A3B5C;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.cta-buttons {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Lead form container */
.lead-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Input field styled to match button */
.input-field {
  flex: 0 0 auto;
  width: 280px;
  max-width: 100%;
  padding: 0.75rem 1.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2;          /* match button line-height */
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  vertical-align: middle;    /* align with button */
}

/* Input focus style */
.input-field:focus {
  border-color: #2A3B5C;
  box-shadow: 0 0 0 2px rgba(42, 59, 92, 0.2);
  outline: none;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2;          /* same as input */
  transition: background 0.2s ease, color 0.2s ease;
  box-sizing: border-box;
  cursor: pointer;
  vertical-align: middle;    /* align with input */
text-decoration: none;
}

.btn.navy {
  background: #2A3B5C;
  color: #ffffff;
  border: none;
text-decoration: none;
}

.btn.navy:hover {
  background: #E53935;
text-decoration: none;
}

/* Mobile: stack input and button vertically */
@media (max-width: 600px) {
  .lead-form {
    flex-direction: column;
    align-items: stretch;
  }

  .input-field,
  .btn {
    width: 100%;
  }
}

.form-success {
  margin-top: 1rem;
  font-weight: bold;
  color: green;
  text-align: center;
}

/* Benefits Section as Cards */
#benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 2rem;
  background: #f9f9f9;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
max-width: 100%;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.benefit-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2A3B5C;
}

.benefit-card p {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  flex-grow: 1;
}

.benefit-card .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

.benefit-image {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.benefit-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}


/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #FDF6EC;
  font-size: 0.9rem;
  color: #2A3B5C;
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-links a {
  margin: 0 0.5rem;
  font-size: 0.85rem;
  color: #2A3B5C;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #E53935;
}


/* Responsive layout */
@media (max-width: 768px) {
  #benefits {
    grid-template-columns: 1fr; /* stack cards vertically */
  }

  .benefit-card .btn {
    width: 100%;
    text-align: center;
  }

  .menu {
    display: none;
    flex-direction: column;
    background: #FDF6EC;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Customer Logos Section */
#customers {
  padding: 3rem 2rem;
  background: #ffffff;
  text-align: center;
}

#customers h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #2A3B5C;
}

.carousel {
  display: flex;
  justify-content: center;
}

.carousel-track {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

.carousel-track img { 
max-width: 180px;
height: auto; 
object-fit: contain; 
filter: grayscale(100%); 
transition: filter 0.3s ease; 
}

.carousel-track img:hover {
  filter: grayscale(0%);
}

/* Mobile: stack logos vertically */
@media (max-width: 768px) {
  .carousel-track {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .carousel-track img {
    max-width: 60%; /* logos scale nicely on mobile */
  }
}

/* Hero Section (wide centered text block) */
.hero {
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
  background: #FDF6EC;
  text-align: center;
}

.hero-content {
  width: 90%;        /* take up 90% of page width */
  max-width: 1200px; /* optional cap so it doesn’t get too wide on huge screens */
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2A3B5C;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero-content {
    width: 100%; /* full width on mobile */
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-list li {
  margin: 0.5rem 0;
}

.faq-list a {
  text-decoration: none;
  color: #003366; /* navy tone */
}

.faq-list a:hover {
  text-decoration: underline;
}

