/* Base Reset and Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #f9f9fc;
  color: #222;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3 {
  color: #0e1746;
}

/* Header */
.site-header {
  background-color: #0e1746;
  color: white;
  padding: 1rem 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container img {
  height: 45px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-menu li a {
  color: white;
  font-weight: 500;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-button {
  background-color: #00e6da;
  padding: 10px 20px;
  border-radius: 25px;
  color: #0e1746;
  font-weight: bold;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(90deg, #e0f7fa 50%, white 50%);
  padding: 3rem 0;
}

.hero-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: space-between;
  gap: 2rem;
}

.hero-left-content {
  flex: 1;
}

.hero-left-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-left-content p {
  margin-bottom: 1rem;
}

.hero-features {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

.btn {
  background-color: #00e6da;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: #0e1746;
  font-weight: bold;
}

.ppo-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #0e1746;
}

.hero-form-container {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  flex: 0 0 400px;
}

.hero-form-container h2 {
  margin-bottom: 0.5rem;
}

.hero-form-container form {
  display: flex;
  flex-direction: column;
}

.hero-form-container input,
.hero-form-container select {
  margin-bottom: 0.75rem;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.hero-form-container button {
  background-color: #3f51b5;
  color: white;
  padding: 10px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-footer {
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* Providers Section */
.providers-section {
  text-align: center;
  padding: 3rem 0;
  background-color: #ffffff;
}

.provider-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.provider-logo {
  max-height: 50px;
}

/* Benefits Section */
.benefits-section {
  background-color: #f4f7fb;
  padding: 3rem 0;
  text-align: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin: 2rem auto;
}

.benefit-item {
  font-size: 1rem;
}

.find-coverage-btn {
  background-color: #00e6da;
  color: #0e1746;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
}

/* Steps Section */
.steps-section {
  padding: 3rem 0;
  background-color: #ffffff;
  text-align: center;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.step-card {
  background: #f1f4f9;
  padding: 1rem;
  border-radius: 10px;
  flex: 1 1 250px;
}

.step-number {
  font-size: 2rem;
  color: #3f51b5;
  font-weight: bold;
}

.compare-plans-btn {
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #3f51b5;
  color: white;
  border-radius: 25px;
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  background-color: #001b3a;
  color: white;
  text-align: center;
  padding: 3rem 0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.cta-phone-btn,
.cta-view-btn {
  background-color: #00e6da;
  color: #0e1746;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
}

/* Plans Section */
.plans-section {
  padding: 3rem 0;
  background-color: #ffffff;
}

.plan-type {
  margin-bottom: 2rem;
}

.plan-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.plan-text {
  flex: 1;
}

.plan-image img {
  max-width: 100%;
  height: auto;
}

.plan-feature {
  margin-bottom: 0.5rem;
}

/* Why Choose Us Section */
.why-choose-section {
  background-color: #eaf3ff;
  padding: 3rem 0;
}

.why-choose-content {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
}

.why-choose-image img {
  max-width: 250px;
  border-radius: 15px;
}

.why-choose-text {
  flex: 1;
}

.eligibility-btn {
  background-color: #3f51b5;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  margin-top: 1rem;
  display: inline-block;
}

/* Footer - UPDATED STYLES */
.site-footer {
  background-color: #1e2c4f;
  color: white;
  padding: 40px 0 20px;
}

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

/* Footer Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
}

.footer-logo-img, .footer-logo img {
  max-height: 40px;
  width: auto;
}

/* Footer Links */
.footer-nav {
  display: flex;
}

.footer-links {
  display: flex;
  gap: 30px;
  justify-content: flex-end; /* Align to the right */
  text-align: left; /* Left align the text */
}

.footer-link {
  color: #4ad7c8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
  text-decoration: underline;
}

/* Footer Disclaimer */
.footer-disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: #a0a8c3;
  margin-bottom: 30px;
  text-align: left;
}

.footer-disclaimer p {
  margin-bottom: 15px;
}

.footer-disclaimer a {
  color: #4ad7c8;
  text-decoration: none;
}

.footer-disclaimer a:hover {
  text-decoration: underline;
}

/* Footer Copyright */
.footer-copyright {
  text-align: center;
  font-size: 14px;
  color: #a0a8c3;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Text - for backward compatibility */
.footer-text {
  font-size: 0.85rem;
  margin: 1rem 0;
  color: #a0a8c3;
}

/* ---------- RESPONSIVE DESIGN ---------- */

/* Small devices (phones, 600px and down) */
@media screen and (max-width: 600px) {
  .hero-container,
  .steps-container,
  .plan-content,
  .why-choose-content,
  .header-container,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-left-content,
  .hero-form-container,
  .step-card,
  .plan-text,
  .plan-image,
  .why-choose-image,
  .why-choose-text {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn,
  .header-button,
  .compare-plans-btn,
  .learn-more-btn,
  .eligibility-btn,
  .cta-phone-btn,
  .cta-view-btn {
    width: 90%;
    margin-bottom: 10px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
  }

  .hero-form-container form input,
  .hero-form-container form select,
  .hero-form-container form button {
    width: 100%;
  }

  .provider-logos {
    flex-direction: column;
    gap: 1rem;
  }

  .step-card {
    margin-bottom: 1.5rem;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }
  
  /* Footer responsive styles */
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo-wrap {
    margin-bottom: 20px;
    justify-content: center;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Medium devices (tablets, 600px–900px) */
@media screen and (max-width: 900px) {
  .header-container,
  .hero-container,
  .plan-content,
  .why-choose-content {
    flex-direction: column;
  }

  .hero-form-container {
    width: 100%;
  }

  .plan-text,
  .plan-image {
    width: 100%;
  }
}
/* Fix horizontal scroll on mobile */
body {
  overflow-x: hidden;
}

.header-container,
.nav-menu,
.site-header {
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}
/* Partners Page - Direct Targeting */
body h1.page-title,
.page-content h2,
body.page-template-template-partners h1.page-title,
body.partners-page h1.page-title {
    text-align: center !important;
    width: 100% !important;
}

/* Target the container directly */
.container,
body .container,
body.page-template-template-partners .container,
body.partners-page .container,
main .container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

/* Target the page content */
.page-content,
body .page-content,
body.page-template-template-partners .page-content,
body.partners-page .page-content {
    max-width: 1140px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

/* Universal partners list styling */
.partners-list,
body .partners-list,
ul.partners-list,
body.page-template-template-partners .partners-list,
body.partners-page .partners-list {
    list-style-type: none !important;
    padding: 0 !important;
    margin: 20px auto !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 15px !important;
    max-width: 1140px !important;
    width: 100% !important;
    justify-content: center !important;
}

/* Individual partner items */
.partners-list li,
body .partners-list li,
ul.partners-list li,
body.page-template-template-partners .partners-list li,
body.partners-page .partners-list li {
    border: 1px solid #eee !important;
    padding: 10px !important;
    text-align: center !important;
    background-color: #f9f9f9 !important;
    border-radius: 4px !important;
}