/*
 * STS Theme custom styles
 * Use this file for branding and custom appearance changes.
 */

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

html {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  line-height: 1.5;
}

body {
  background-color: var(--sts-white);
  color: #333333;
  min-height: 100vh;
}

h1,
h2,
h3 {
  color: var(--sts-primary-blue);
}

a {
  color: var(--sts-primary-blue);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--sts-gold);
}

.front-page body,
.front-page .site-content,
.front-page .content-area,
.front-page .entry-content,
.front-page .site-main {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.front-page .inside-article {
  padding: 0 !important;
}

body.home .site-content,
body.home .content-area,
body.home .entry-content,
body.home .site-main,
body.home article,
body.home .inside-article {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

body.home .site-header .inside-header {
  max-width: 100% !important;
  padding: 0 20px !important;
}

body.home .sts-hero {
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  width: 100vw !important;
  max-width: 100vw !important;
}

/* Hide default GeneratePress footer credit bar */
.site-info,
.generated-by,
#colophon .site-info,
.generate-back-to-top {
  display: none !important;
}

.sts-section-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.site,
.site-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.sts-hero {
  position: relative;
  width: 100%;
  min-height: 750px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Left gradient overlay (40% width, white gradient from left to transparent) */
.sts-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.6), transparent);
  z-index: 1;
}

/* Hero content container */
.sts-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 45%;
  height: 100%;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 0;
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Gold eyebrow text */
.sts-hero-eyebrow {
  color: var(--sts-gold);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Hero title */
.sts-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--sts-primary-blue);
  margin-bottom: 12px;
  line-height: 1.1;
}

.sts-hero-copy {
  color: #444444;
  max-width: 480px;
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 15px;
}

/* CTA button */
.sts-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.sts-hero-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 480px;
}

.sts-cta-gold {
  background-color: var(--sts-gold);
  color: #FFFFFF;
  border-color: var(--sts-gold);
}

.sts-cta-blue {
  background-color: var(--sts-primary-blue);
  color: #FFFFFF;
  border-color: var(--sts-primary-blue);
}

.sts-cta-outline {
  background-color: #FFFFFF;
  color: var(--sts-primary-blue);
  border-color: var(--sts-primary-blue);
}

.sts-cta-button:hover,
.sts-cta-button:focus {
  opacity: 0.95;
}

/* Font Awesome gold icon helpers */
.icon-gold {
  color: #F4B142 !important;
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}
.icon-gold-sm {
  color: #F4B142 !important;
  font-size: 16px;
  margin-right: 6px;
}

/* Wave SVG at bottom of hero */
.sts-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 3;
}

/* Responsive design */
@media (max-width: 768px) {
  .sts-hero {
    min-height: auto !important;
    background-attachment: scroll !important;
  }

  .sts-hero-overlay {
    width: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4) 60%, transparent 100%);
  }

  .sts-hero-content {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    padding: 40px 20px !important;
    background: rgba(255, 255, 255, 0.65) !important;
  }

  .sts-hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .sts-hero-buttons a {
    width: 100% !important;
    text-align: center !important;
    padding: 12px 20px !important;
    font-size: 13px !important;
    box-sizing: border-box !important;
  }

  .sts-hero h1 {
    font-size: 28px !important;
  }

  .sts-hero .sts-hero-eyebrow {
    font-size: 10px !important;
  }

  .sts-hero p {
    font-size: 14px !important;
  }

  .sts-wave {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .sts-hero {
    min-height: 420px;
  }

  .sts-hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sts-hero-eyebrow {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }

  .sts-hero-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .sts-wave {
    height: 60px;
  }
}


.sts-content {
  padding: 3rem 1rem;
  background-color: var(--sts-white);
}

.inside-content {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.sts-content p {
  font-size: 1.125rem;
  line-height: 1.75;
}

/* Brand colors:
   Gold: #F4B142
   Light Blue: #79A2B3
   Primary Blue: #367698
   White: #FFFFFF
*/

/* Container */
.sts-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* Stats Section */
.sts-stats {
  background: #ffffff;
  padding: 60px 0;
  border-bottom: 1px solid #f0f0f0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.sts-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; margin-bottom: 40px; }
.sts-stat { padding: 20px; }
.sts-stat-num { display: block; font-size: 36px; font-weight: 700; color: #367698; border-bottom: 3px solid #F4B142; padding-bottom: 10px; margin-bottom: 8px; }
.sts-stat-label { display: block; font-size: 14px; color: #666; }
.sts-trust-bar { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.sts-trust-bar span { font-size: 13px; color: #367698; font-weight: 500; }

/* Audience Section */
.sts-audience {
  background: #f7f9fa;
  padding: 80px 0;
  text-align: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.sts-audience { background: #f7f9fa; padding: 80px 0; text-align: center; }
.sts-audience h2 { font-size: 36px; color: #367698; margin-bottom: 40px; }
.sts-audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.sts-audience-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.3s ease; }
.sts-audience-card:hover { transform: translateY(-4px); }
.sts-audience-image img { width: 100%; height: 200px; object-fit: cover; display: block; }
.sts-audience-card h3 { font-size: 20px; color: #367698; margin: 24px 0 12px; padding: 0 30px; }
.sts-audience-card p { color: #666; line-height: 1.7; margin: 0 0 16px; padding: 0 30px; }
.sts-audience-card a { display: inline-block; margin: 0 0 30px 30px; }
.sts-link-gold { color: #F4B142; font-weight: 600; text-decoration: none; }
.sts-link-blue { color: #367698; font-weight: 600; text-decoration: none; }

/* About Section */
.sts-about {
  background: #fff;
  padding: 80px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.sts-about .sts-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.sts-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sts-label-gold { font-size: 12px; font-weight: 700; color: #F4B142; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 12px; }
.sts-about-content h2 { font-size: 36px; color: #367698; margin-bottom: 20px; }
.sts-about-content p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.sts-tagline-italic,
.sts-italic-tagline { font-style: italic; color: #F4B142 !important; font-weight: 600; }
.sts-about-image img { width: 100%; border-radius: 20px; border: 3px solid #F4B142; }
.sts-btn-outline { display: inline-block; margin-top: 20px; padding: 12px 28px; border: 2px solid #367698; color: #367698; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s; }
.sts-btn-outline:hover { background: #367698; color: #fff; }

/* Services Section */
.sts-services {
  background: #f7f9fa;
  padding: 80px 0;
  text-align: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.sts-services .sts-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.sts-services h2 { font-size: 36px; color: #367698; margin-bottom: 12px; }
.sts-section-sub { color: #666; font-size: 16px; margin-bottom: 40px; }
.sts-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; text-align: left; }
.sts-service-card { background: #fff; border-radius: 12px; overflow: hidden; border-top: 3px solid #F4B142; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.sts-service-image img { width: 100%; height: 160px; object-fit: cover; display: block; border-radius: 8px 8px 0 0; }
.sts-service-card h4 { color: #367698; font-size: 16px; margin: 20px 0 8px; padding: 0 30px; }
.sts-service-card p { color: #888; font-size: 14px; line-height: 1.6; padding: 0 30px 30px; }
.sts-btn-primary { display: inline-block; padding: 14px 32px; background: #367698; color: #fff; border-radius: 30px; text-decoration: none; font-weight: 600; transition: background 0.3s; }
.sts-btn-primary:hover { background: #2a5a78; color: #fff; }

/* Why STS Section */
.sts-why {
  background: #fff;
  padding: 80px 0;
  text-align: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.sts-why .sts-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.sts-why h2 { font-size: 36px; color: #367698; margin-bottom: 40px; }
.sts-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; text-align: left; }
.sts-why-item { display: flex; gap: 20px; align-items: flex-start; }
.sts-why-icon { font-size: 32px; flex-shrink: 0; }
.sts-why-item h4 { color: #367698; font-size: 18px; margin-bottom: 8px; }
.sts-why-item p { color: #666; line-height: 1.7; }

/* Testimonials Section */
.sts-testimonials {
  background: #f7f9fa;
  padding: 80px 0;
  text-align: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.sts-testimonials .sts-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.sts-testimonials h2 { font-size: 36px; color: #367698; margin-bottom: 40px; }
.sts-testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; text-align: left; }
.sts-testimonial-card { background: #fff; border-radius: 12px; padding: 40px; border-left: 4px solid #F4B142; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.sts-quote-mark { font-size: 60px; color: #F4B142; line-height: 0.5; display: block; margin-bottom: 20px; font-family: Georgia, serif; }
.sts-testimonial-card p { color: #555; font-style: italic; line-height: 1.8; margin-bottom: 20px; }
.sts-testimonial-attr { color: #367698; font-weight: 600; font-size: 14px; }

/* Clinics Section */
.sts-clinics {
  background: #fff;
  padding: 80px 0;
  text-align: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.sts-clinics .sts-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.sts-clinics h2 { font-size: 36px; color: #367698; margin-bottom: 12px; }
.sts-clinics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 40px 0; }
.sts-clinic-card { background: #f7f9fa; border-radius: 16px; padding: 40px 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.3s; }
.sts-clinic-card:hover { transform: translateY(-4px); }
.sts-clinic-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.sts-clinic-card h3 { color: #367698; font-size: 24px; margin-bottom: 8px; }
.sts-clinic-name { font-weight: 600; color: #444; margin-bottom: 4px; }
.sts-clinic-card p { color: #666; font-size: 14px; margin-bottom: 4px; }
.sts-clinic-phone { color: #367698; font-weight: 600; margin-bottom: 16px !important; }
.sts-btn-gold-small { display: inline-block; padding: 8px 20px; background: #F4B142; color: #fff; border-radius: 20px; text-decoration: none; font-size: 13px; font-weight: 600; }
.sts-btn-gold { display: inline-block; padding: 14px 32px; background: #F4B142; color: #fff; border-radius: 30px; text-decoration: none; font-weight: 600; transition: background 0.3s; }
.sts-btn-gold:hover { background: #e0a030; color: #fff; }

.clinic-service-signs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.clinic-service-sign-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  text-align: left;
  min-height: 240px;
}
.clinic-service-sign-card .sign-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #F4B142;
  border-radius: 50%;
  font-size: 20px;
  margin-bottom: 16px;
}
.clinic-service-sign-card h4 {
  font-size: 18px;
  color: #367698;
  margin-bottom: 10px;
}
.clinic-service-sign-card p {
  color: #555;
  line-height: 1.7;
}
.clinic-service-steps-grid,
.clinic-approach-grid,
.clinic-locations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
}
.clinic-step-card,
.clinic-approach-item,
.clinic-location-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.clinic-step-card {
  text-align: left;
}
.clinic-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F4B142;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 18px;
}
.clinic-step-card h4,
.clinic-approach-item h4,
.clinic-location-card h3 {
  color: #367698;
  margin-bottom: 12px;
}
.clinic-step-card p,
.clinic-approach-item p,
.clinic-location-card p {
  color: #555;
  line-height: 1.75;
}
.clinic-approach-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.clinic-approach-icon {
  font-size: 32px;
  line-height: 1;
}
.clinic-location-card {
  text-align: left;
}
.clinic-location-card a {
  display: inline-block;
  margin-top: 18px;
}
.insurance-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0f7fb;
  color: #367698;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
}
.insurance-info-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 28px;
}
.clinic-location-card.coming-soon {
  opacity: 0.9;
}

@media (max-width: 980px) {
  .clinic-service-signs-grid,
  .clinic-service-steps-grid,
  .clinic-approach-grid,
  .clinic-locations-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .clinic-service-signs-grid,
  .clinic-service-steps-grid,
  .clinic-approach-grid,
  .clinic-locations-grid {
    grid-template-columns: 1fr;
  }
}

/* Careers Section */
.sts-careers {
  background-image: url('/wp-content/uploads/2026/05/OAS-Center-For-Specialized-Therapy-18-1832x1333.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0;
  text-align: center;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.sts-careers::before { content: ""; position: absolute; inset: 0; background: rgba(54,118,152,0.85); }
.sts-careers .sts-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
.sts-careers h2 { font-size: 36px; color: #fff; margin-bottom: 16px; }
.sts-careers p { color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.8; max-width: 600px; margin: 0 auto 32px; }
.sts-careers-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.sts-btn-white { display: inline-block; padding: 14px 32px; background: #fff; color: #367698; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s; }
.sts-btn-white:hover { background: #f0f0f0; }
.sts-btn-white-outline { display: inline-block; padding: 14px 32px; background: transparent; color: #fff; border: 2px solid #fff; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.3s; }
.sts-btn-white-outline:hover { background: rgba(255,255,255,0.1); }

/* Footer */
.sts-footer {
  background: #367698;
  padding: 60px 0 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.sts-footer .sts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}
.sts-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.sts-footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.sts-footer-col p { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.8; }
.sts-footer-tagline { font-style: italic; color: #F4B142 !important; }
.sts-footer-col ul { list-style: none; padding: 0; margin: 0; }
.sts-footer-col ul li { margin-bottom: 8px; }
.sts-footer-col ul li a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.sts-footer-col ul li a:hover { color: #F4B142; }
.sts-footer-social { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
.sts-footer-social a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.sts-footer-social a:hover { color: #F4B142; }

.sts-footer-bottom {
  width: 100%;
  padding: 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}
.sts-footer-bottom p { color: rgba(255,255,255,0.6); font-size: 13px; margin: 0; }
.sts-footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.sts-footer-bottom a:hover { color: #F4B142; }
/* Testimonials dark background */
.sts-testimonials {
  background: #2C5272 !important;
}
.sts-testimonials h2 {
  color: #ffffff !important;
}
.sts-testimonial-card {
  background: rgba(255,255,255,0.1) !important;
  border-left: 4px solid #F4B142 !important;
}
.sts-testimonial-card p {
  color: rgba(255,255,255,0.9) !important;
}
.sts-testimonial-attr {
  color: #F4B142 !important;
}
.sts-testimonial-headshot {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #F4B142;
  margin-bottom: 16px;
  display: block;
}

/* Services teal background */
.sts-services {
  background: #e8f4f8 !important;
}
.sts-service-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
  color: #F4B142;
}

/* Why STS image column */
.sts-why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sts-why-image {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 500px;
}
.sts-why-item {
  position: relative;
  overflow: hidden;
}
.sts-why-watermark {
  position: absolute;
  font-size: 80px;
  opacity: 0.08;
  top: -10px;
  right: -10px;
  pointer-events: none;
}

/* Careers gold background */
.sts-careers {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}
.sts-careers-overlay {
  background: rgba(244,177,66,0.88);
  padding: 80px 0;
}
.sts-careers h2,
.sts-careers p {
  color: #ffffff !important;
}

/* Audience card images */
.sts-audience-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
}

/* Remove top padding so image sits flush */
.sts-audience-card { padding-top: 0; }

/* Careers button overrides */
.sts-careers-btn-primary { background: #ffffff !important; color: #F4B142 !important; font-weight: 700 !important; }
.sts-careers .sts-btn-white-outline { border-color: #ffffff !important; color: #ffffff !important; }

/* Clinic card images */
.sts-clinic-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
  margin-bottom: 0;
}

/* Mobile responsive additions */
@media (max-width: 768px) {
  .sts-why-wrapper {
    grid-template-columns: 1fr !important;
  }
  .sts-why-image {
    display: none;
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .sts-container { padding: 0 20px; }
  .sts-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sts-trust-bar { flex-direction: column; align-items: center; gap: 10px; }
  .sts-audience-grid { grid-template-columns: 1fr; }
  .sts-about-grid { grid-template-columns: 1fr; }
  .sts-services-grid { grid-template-columns: 1fr; }
  .sts-why-grid { grid-template-columns: 1fr; }
  .sts-testimonials-grid { grid-template-columns: 1fr; }
  .sts-clinics-grid { grid-template-columns: 1fr; }
  .sts-footer-grid { grid-template-columns: 1fr; }
  .sts-stats-grid .sts-stat-num { font-size: 28px; }
  h2 { font-size: 28px !important; }
}

.clinic-hero-bg {
  background-size: cover;
  background-position: center;
  position: relative;
}
.clinic-hero-overlay {
  background: rgba(54,118,152,0.75);
  padding: 120px 40px;
  text-align: center;
  color: #ffffff;
}
.clinic-hero-overlay .sts-label-gold {
  color: #F4B142;
}
.clinic-services-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
  margin-top: 40px;
}
.clinic-service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  border-top: 3px solid #F4B142;
}
.clinic-service-card .service-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}
.clinic-service-card h4 {
  color: #367698;
  font-size: 18px;
  margin-bottom: 8px;
}
.clinic-service-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}
.clinic-service-card.coming-soon {
  border-top-color: #ccc;
  opacity: 0.75;
}
.clinic-service-card.coming-soon h4 {
  color: #999;
}
.insurance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.insurance-badge {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 14px;
  color: #367698;
  font-weight: 600;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-top: 40px;
}
.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}
.step-number {
  width: 50px;
  height: 50px;
  background: #F4B142;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 16px;
}
.step-card h4 {
  color: #367698;
  margin-bottom: 8px;
}
.step-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}
.partner-cards-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-top: 40px;
}
.partner-cards-grid.two-col {
  grid-template-columns: repeat(2,1fr);
  max-width: 800px;
  margin: 40px auto 0;
}
.partner-cards-grid.one-col {
  grid-template-columns: 1fr;
  max-width: 500px;
  margin: 40px auto 0;
}
.contact-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.contact-info-block h2 {
  color: #367698;
  margin-bottom: 16px;
}
.contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.contact-detail-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.contact-detail p {
  color: #555;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  border: none;
}
@media (max-width: 768px) {
  .clinic-services-grid,
  .steps-grid,
  .contact-location-grid,
  .partner-cards-grid,
  .page-content-two-col {
    grid-template-columns: 1fr !important;
  }
  .clinic-hero-overlay {
    padding: 80px 20px !important;
  }
}

.page-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #367698;
}
.page-hero-inner {
  padding: 100px 40px;
  text-align: center;
}
.page-hero .sts-label-gold {
  display: block;
  margin-bottom: 12px;
}
.page-hero h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* STICKY HEADER */
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
}

/* Push page content down so it doesn't hide behind fixed header */
.site-main,
.content-area,
body.home .site-content {
    margin-top: 80px !important;
}

/* When WordPress admin bar is showing add extra offset */
.admin-bar .site-header {
    top: 32px !important;
}
.admin-bar .site-main,
.admin-bar .content-area,
.admin-bar body.home .site-content {
    margin-top: 112px !important;
}

/* Make sure hero section on homepage doesn't get hidden */
body.home .sts-hero {
    margin-top: 0 !important;
}

.site-header .inside-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-branding .custom-logo-link img,
.site-branding .site-title,
.site-branding .site-title a {
  max-height: 65px;
  width: auto;
  color: #367698;
}
.site-branding .site-title a {
  color: #367698;
  text-decoration: none;
}
.main-navigation .main-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.main-navigation .main-nav a {
  color: #333333;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
}
.main-navigation .main-nav li.menu-item-has-children > a::after {
  content: " ▾";
  font-size: 0.78rem;
  margin-left: 0.25rem;
}
.main-navigation .main-nav .sub-menu {
  min-width: 220px;
}
.about-founding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-placeholder-img {
  background: #e8f4f8;
  height: 400px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #79A2B3;
  font-size: 14px;
}
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-top: 40px;
}
.vmv-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  border-top: 3px solid #F4B142;
  text-align: center;
}
.vmv-card .vmv-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.vmv-card h3 {
  color: #367698;
  font-size: 20px;
  margin-bottom: 12px;
}
.vmv-card p {
  color: #666;
  line-height: 1.7;
}
.stats-section-dark {
  background: #367698;
}
.stats-section-dark .sts-stat-num {
  color: #ffffff;
}
.stats-section-dark .sts-stat-label {
  color: rgba(255,255,255,0.8);
}
.stats-section-dark .sts-trust-bar span {
  color: rgba(255,255,255,0.9);
}
.different-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}
.different-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.different-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.different-item h4 {
  color: #367698;
  font-size: 18px;
  margin-bottom: 8px;
}
.different-item p {
  color: #666;
  line-height: 1.7;
}
.team-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.team-cta-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.team-cta-card .cta-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.team-cta-card h3 {
  color: #367698;
  margin-bottom: 12px;
}
.team-cta-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-top: 40px;
}
.partner-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stronger-together-card {
    min-height: 280px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}
.stronger-together-card p {
    font-size: 14px !important;
    line-height: 1.7 !important;
}
.partner-card h4 {
  color: #367698;
  font-size: 18px;
  margin-bottom: 8px;
}
.partner-card .partner-sub {
  font-size: 13px;
  color: #F4B142;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.partner-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.cta-banner-gold {
  background: #ffffff;
  padding: 60px 0;
  border-top: 4px solid #F4B142;
  border-bottom: 4px solid #F4B142;
}
.cta-banner-gold h2 {
  color: #367698;
  font-size: 36px;
  margin-bottom: 16px;
}
.cta-banner-gold p {
  color: #555;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
}
.cta-banner-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner-gold .btn-white-solid,
.cta-banner-gold .btn-white-outline2,
.cta-banner-gold .sts-cta-outline,
.cta-banner-gold .sts-btn-white {
  background: #F4B142;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
}
.btn-white-solid {
  background: #fff;
  color: #F4B142;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-white-solid:hover {
  background: #f0f0f0;
  color: #F4B142;
}
.btn-white-outline2 {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-white-outline2:hover {
  background: rgba(255,255,255,0.15);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-top: 40px;
}
.team-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
}
.team-card-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #F4B142;
  margin: 0 auto 16px;
  display: block;
}
.team-card-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #e8f4f8;
  border: 3px solid #F4B142;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.team-card h3 {
  color: #367698;
  font-size: 18px;
  margin-bottom: 4px;
}
.team-card .team-title {
  color: #F4B142;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}
.team-card p {
  color: #666;
  font-size: 13px;
  line-height: 1.7;
}
.discipline-label {
  font-size: 12px;
  font-weight: 700;
  color: #F4B142;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin: 40px 0 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #F4B142;
}
.abacus-services-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
  margin-top: 40px;
}
.abacus-service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  border-top: 3px solid #F4B142;
}
.abacus-service-card .service-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}
.abacus-service-card h4 {
  color: #367698;
  margin-bottom: 8px;
}
.abacus-service-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}
.contact-card-centered {
  max-width: 500px;
  margin: 40px auto 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}
.contact-card-centered h4 {
  color: #367698;
  font-size: 20px;
  margin-bottom: 8px;
}
.contact-card-centered p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 4px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  border-top: 3px solid #F4B142;
}
.service-card .service-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}
.service-card h4 {
  color: #367698;
  margin-bottom: 12px;
}
.service-card p {
  color: #666;
  line-height: 1.7;
  font-size: 14px;
}
.page-content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-section {
  padding: 80px 0;
}
.page-section-light {
  background: #f7f9fa;
}
.page-section-white {
  background: #ffffff;
}
.section-center {
  text-align: center;
}
.section-headline {
  color: #367698;
  font-size: 34px;
  margin: 0 auto 16px;
  max-width: 850px;
}
.section-copy {
  color: #666;
  line-height: 1.8;
  font-size: 17px;
  max-width: 760px;
  margin: 0 auto;
}
.sts-italic-tagline {
  color: #F4B142;
  font-style: italic;
  display: inline-block;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .about-founding-grid,
  .vmv-grid,
  .different-grid,
  .team-cta-grid,
  .partners-grid,
  .team-grid,
  .abacus-services-grid,
  .page-content-two-col {
    grid-template-columns: 1fr !important;
  }
  .page-hero h1 {
    font-size: 32px !important;
  }
}

  /* Pain point cards */
  .pain-cards-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
  }
  .pain-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid #F4B142;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  .pain-card .pain-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
  }
  .pain-card h4 {
    color: #367698;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .pain-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
  }

  /* Compliance checklist */
  .compliance-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  .compliance-checklist li {
    color: #555;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .compliance-checklist li::before {
    content: '✓';
    color: #F4B142;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
  }

  /* Conditions grid */
  .conditions-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 40px;
  }
  .condition-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border-top: 3px solid #F4B142;
    text-align: center;
  }
  .condition-card .condition-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
  }
  .condition-card h4 {
    color: #367698;
    font-size: 15px;
    margin-bottom: 8px;
  }
  .condition-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
  }

  /* Clinic cards for families page */
  .families-clinics-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
  }
  .families-clinic-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
  }
  .families-clinic-card:hover {
    transform: translateY(-4px);
  }
  .families-clinic-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }
  .families-clinic-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: #e8f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #79A2B3;
    font-size: 13px;
  }
  .families-clinic-card-body {
    padding: 30px;
    text-align: center;
  }
  .families-clinic-card-body .clinic-pin {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
  }
  .families-clinic-card-body h3 {
    color: #367698;
    font-size: 22px;
    margin-bottom: 4px;
  }
  .families-clinic-card-body .clinic-subtitle {
    color: #F4B142;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
  }
  .families-clinic-card-body .clinic-address {
    color: #888;
    font-size: 13px;
    margin-bottom: 4px;
  }
  .families-clinic-card-body .clinic-services-list {
    color: #555;
    font-size: 12px;
    margin: 12px 0 16px;
    line-height: 1.6;
  }

  /* Insurance info box */
  .insurance-info-box {
    background: #e8f4f8;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    margin: 30px auto 0;
    text-align: center;
  }
  .insurance-info-box h4 {
    color: #367698;
    margin-bottom: 10px;
  }
  .insurance-info-box p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  /* FAQ accordion */
  .faq-list {
    max-width: 800px;
    margin: 40px auto 0;
  }
  .faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
  }
  .faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #367698;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .faq-question::after {
    content: '+';
    font-size: 24px;
    color: #F4B142;
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  .faq-item.open .faq-question::after {
    transform: rotate(45deg);
  }
  .faq-answer {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .faq-item.open .faq-answer {
    max-height: 300px;
    padding-top: 12px;
  }

  /* Steps grid 4 columns */
  .steps-grid-4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    margin-top: 40px;
  }

  /* Hero left-aligned overlay */
  .hero-left-overlay {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
  }
  .hero-left-content {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(4px);
    padding: 60px 40px;
    max-width: 520px;
    margin-left: 80px;
    border-radius: 12px;
  }

  @media (max-width: 768px) {
    .pain-cards-grid,
    .conditions-grid,
    .families-clinics-grid,
    .steps-grid-4 {
      grid-template-columns: 1fr !important;
    }
    .hero-left-content {
      margin: 20px !important;
      max-width: 100% !important;
    }
  }

/* =====================
   CONTACT & CAREERS PAGE STYLES
   ===================== */

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
}
.contact-option-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.contact-option-card:hover {
    transform: translateY(-4px);
}
.contact-option-card .contact-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}
.contact-option-card h3 {
    color: #367698;
    margin-bottom: 12px;
}
.contact-option-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-forms-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

.form-placeholder-box {
    background: #e8f4f8;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}
.form-placeholder-box .form-note {
    color: #F4B142;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.form-placeholder-box .form-fields-preview {
    color: #79A2B3;
    font-size: 12px;
    line-height: 1.6;
}

.location-cards-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
}
.location-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.location-card h3 {
    color: #367698;
    margin-bottom: 16px;
    font-size: 18px;
}
.location-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 2px;
}
.location-card .location-link {
    color: #F4B142;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    display: block;
    margin: 12px 0;
}
.location-card iframe {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    border: none;
    margin-top: 16px;
}

.social-links-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}
.social-link-btn {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.3s;
}
.social-link-btn:hover {
    background: rgba(255,255,255,0.25);
    color: #ffffff;
}

.position-cards-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 40px;
}
.position-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}
.position-card:hover {
    border-color: #F4B142;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.position-card .position-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}
.position-card h4 {
    color: #367698;
    font-size: 15px;
    margin-bottom: 8px;
}
.position-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.careers-apply-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-options-grid,
    .location-cards-grid,
    .position-cards-grid {
        grid-template-columns: 1fr !important;
    }
    .contact-forms-grid,
    .careers-apply-grid {
        grid-template-columns: 1fr !important;
    }
}

.service-who-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 40px;
}
.service-who-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border-top: 3px solid #F4B142;
    text-align: center;
}
.service-who-card .who-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}
.service-who-card h4 {
    color: #367698;
    font-size: 15px;
    margin-bottom: 8px;
}
.service-who-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}
.service-steps-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
}
.service-step-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.service-step-number {
    width: 50px;
    height: 50px;
    background: #F4B142;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 16px;
}
.service-step-card h4 {
    color: #367698;
    margin-bottom: 8px;
}
.service-step-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}
.service-why-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}
.service-why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px !important;
}
.service-why-icon {
    font-size: 28px;
    flex-shrink: 0;
}
.service-why-item h4 {
    color: #367698;
    font-size: 16px;
    margin-bottom: 6px;
}
.service-why-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .service-who-grid,
    .service-steps-grid,
    .service-why-grid {
        grid-template-columns: 1fr !important;
    }
}
.sts-full-width-hero {
    height: 550px !important;
    overflow: hidden !important;
    background-position: center center !important;
}
.sts-full-width-hero > div:last-child {
    padding-top: 160px !important;
    padding-bottom: 80px !important;
}
.sts-full-width-hero.parent-hero > div:last-child {
    padding-top: 50px !important;
}

/* Ensure hero headings remain white and are not overridden by CTA styles */
.sts-full-width-hero h1,
.sts-full-width-hero h2 {
  color: #ffffff !important;
}

/* ===== Section Blue: brand blue background sections ===== */
.section-blue {
    background: #367698 !important;
}
.section-blue h2,
.section-blue h3,
.section-blue h4 {
    color: #ffffff !important;
}
.section-blue p {
    color: rgba(255,255,255,0.92) !important;
}
.section-blue .service-who-card,
.section-blue .service-why-item,
.section-blue .clinic-service-sign-card {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
}
.section-blue .service-who-card h4,
.section-blue .service-why-item h4,
.section-blue .clinic-service-sign-card h4 {
    color: #ffffff !important;
}
.section-blue .service-who-card p,
.section-blue .service-why-item p,
.section-blue .clinic-service-sign-card p {
    color: rgba(255,255,255,0.9) !important;
}
.section-blue .icon-gold {
    color: #F4B142 !important;
}
.section-blue .sts-label-gold {
    color: #F4B142 !important;
}

/* ===== Clinic approach section text fix ===== */
.clinic-approach-item h4 {
    color: #367698 !important;
    font-size: 16px !important;
    margin-bottom: 6px !important;
}
.clinic-approach-item p {
    color: #555555 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}
.clinic-approach-grid {
    background: transparent !important;
}

/* ===== Insurance info box ===== */
.insurance-info-box {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 30px !important;
    max-width: 600px !important;
    margin: 30px auto 0 !important;
    text-align: center !important;
}
.insurance-info-box h4 {
    color: #367698 !important;
}
.insurance-info-box p {
    color: #555555 !important;
}

/* ===== Insurance info box inside blue section ===== */
.section-blue .insurance-info-box h4 {
    color: #ffffff !important;
}
.section-blue .insurance-info-box p {
    color: rgba(255,255,255,0.9) !important;
}

/* ===== Approach section — white background with outlined cards ===== */
.approach-section {
    background: #ffffff !important;
}
.approach-section h2 {
    color: #367698 !important;
}
.approach-section .clinic-approach-item {
    border: 2px solid #367698 !important;
    border-radius: 12px !important;
    padding: 25px !important;
    background: #ffffff !important;
}
.approach-section .clinic-approach-item h4 {
    color: #367698 !important;
}
.approach-section .clinic-approach-item p {
    color: #555555 !important;
}

/* ===== Locations section — brand blue background ===== */
.locations-section {
    background: #367698 !important;
    text-align: center !important;
}
.locations-section h2 {
    color: #ffffff !important;
}
.locations-section .clinic-location-card {
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #ffffff !important;
}
.locations-section .clinic-location-card h3 {
    color: #ffffff !important;
}
.locations-section .clinic-location-card p,
.locations-section .clinic-location-card strong {
    color: rgba(255,255,255,0.9) !important;
}
.locations-section .clinic-locations-grid {
    justify-content: center !important;
}

/* ===== Glassmorphism card effects ===== */

/* Cards on blue backgrounds - glassmorphism effect */
.section-blue .service-who-card,
.section-blue .service-why-item,
.section-blue .clinic-service-sign-card,
.section-blue .step-card,
.section-blue .condition-card,
.section-blue .pain-card,
.locations-section .clinic-location-card,
.section-blue .families-clinic-card,
.section-blue .contact-option-card,
.section-blue .partner-card,
.section-blue .testimonial-card,
.section-blue .stat-card,
.section-blue .position-card,
.section-blue .benefit-card {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

/* Hover effect on blue background cards */
.section-blue .service-who-card:hover,
.section-blue .service-why-item:hover,
.section-blue .clinic-service-sign-card:hover,
.section-blue .condition-card:hover,
.section-blue .pain-card:hover,
.locations-section .clinic-location-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.2) !important;
    background: rgba(255,255,255,0.12) !important;
}

/* White background cards - clean outlined style */
.approach-section .clinic-approach-item,
.service-step-card,
.clinic-step-card,
.families-clinic-card,
.contact-option-card,
.position-card,
.partner-card {
    background: #ffffff !important;
    border: 1px solid rgba(54,118,152,0.2) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(54,118,152,0.08) !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

/* Hover effect on white cards */
.approach-section .clinic-approach-item:hover,
.service-step-card:hover,
.clinic-step-card:hover,
.families-clinic-card:hover,
.contact-option-card:hover,
.position-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 32px rgba(54,118,152,0.15) !important;
    border-color: rgba(54,118,152,0.4) !important;
}

/* Gold top border accent cards on white backgrounds */
.clinic-service-card,
.service-who-card,
.condition-card,
.school-service-card {
    background: #ffffff !important;
    border: 1px solid rgba(54,118,152,0.15) !important;
    border-top: 3px solid #F4B142 !important;
    border-radius: 0 0 16px 16px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.clinic-service-card:hover,
.condition-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 28px rgba(0,0,0,0.1) !important;
}

/* Insurance badges */
.insurance-badge {
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 30px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* Step number circles */
.step-number,
.service-step-number,
.clinic-step-number {
    box-shadow: 0 4px 12px rgba(244,177,66,0.4) !important;
}

/* ===== Header: logo sizing and padding ===== */
.site-logo img,
.custom-logo-link img {
    max-height: 105px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    padding: 0 !important;
}

.custom-logo {
    max-height: 105px !important;
    width: auto !important;
    height: auto !important;
}

.custom-logo-link {
    padding: 6px 0 !important;
    display: flex !important;
    align-items: center !important;
}

.site-branding {
    padding: 6px 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* ===== Header: fix double dropdown arrows ===== */

/* Hide GeneratePress default dropdown arrows */
.main-navigation .dropdown-menu-toggle {
    display: none !important;
}

/* Keep only the CSS arrow we want */
.main-navigation ul li.menu-item-has-children > a::after {
    content: ' ▾' !important;
    font-size: 10px !important;
    color: #F4B142 !important;
    margin-left: 4px !important;
}

/* Hide any duplicate SVG or icon arrows GeneratePress injects */
.main-navigation .dropdown-menu-toggle svg,
.main-navigation li.menu-item-has-children > a .gp-icon,
.main-navigation li.menu-item-has-children > a svg {
    display: none !important;
}

/* Third level items — arrow pointing right */
.main-navigation ul ul li.menu-item-has-children > a::after {
    content: ' ›' !important;
    font-size: 14px !important;
    color: #F4B142 !important;
    float: right !important;
    margin-left: 8px !important;
}
/* Careers page hero height override */
.page-template-careers .sts-full-width-hero {
    height: 650px !important;
}
.page-template-careers .sts-full-width-hero > div:last-child {
    padding-top: 150px !important;
    padding-bottom: 100px !important;
}

/* All School Services directory page */
.all-services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 40px;
}
.all-services-grid.two-col {
    grid-template-columns: repeat(2,1fr);
    max-width: 800px;
    margin: 40px auto 0;
}
.all-services-grid.one-col {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 40px auto 0;
}
.all-services-grid.three-centered {
    grid-template-columns: repeat(3,1fr);
    max-width: 900px;
    margin: 40px auto 0;
}
.all-service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    border-top: 3px solid #F4B142;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}
.all-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.all-service-card h4 {
    color: #367698;
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 12px;
}
.all-service-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}
.all-service-card a {
    color: #367698;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.all-service-card a:hover {
    color: #F4B142;
}
@media (max-width: 768px) {
    .all-services-grid,
    .all-services-grid.two-col,
    .all-services-grid.three-centered {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }
}

/* Form Lightbox Modal */
.sts-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.sts-modal-overlay.active {
    display: flex;
}
.sts-modal {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.sts-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #367698;
    background: none;
    border: none;
    line-height: 1;
    font-weight: 300;
}
.sts-modal-close:hover {
    color: #F4B142;
}
.sts-modal h3 {
    color: #367698;
    font-size: 24px;
    margin-bottom: 8px;
}
.sts-modal p.modal-subtext {
    color: #666;
    font-size: 14px;
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .sts-modal {
        padding: 24px 16px;
    }
}

/* Mobile Hero Banner */
@media (max-width: 768px) {
    .sts-full-width-hero {
        height: auto !important;
        min-height: 400px !important;
    }
    .sts-full-width-hero > div:last-child {
        padding-top: 120px !important;
        padding-bottom: 80px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .sts-full-width-hero h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    .sts-full-width-hero p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    .sts-full-width-hero div[style*="display:flex"] {
        flex-direction: column !important;
        align-items: center !important;
    }
    .sts-full-width-hero a {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
    }
}

@media (max-width: 768px) {

    /* Stack all two-column layouts */
    .sts-two-col,
    .two-col-grid,
    .content-image-grid,
    div[style*="display:grid"][style*="grid-template-columns:1fr 1fr"],
    div[style*="display:grid"][style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns:3fr"],
    div[style*="grid-template-columns: 3fr"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* Stack all flex rows */
    div[style*="display:flex"][style*="gap"] {
        flex-direction: column !important;
    }

    /* Service grids */
    .service-who-grid,
    .service-steps-grid,
    .service-why-grid,
    .clinic-service-signs-grid,
    .clinic-steps-grid,
    .clinic-approach-grid,
    .clinic-locations-grid,
    .all-services-grid,
    .all-services-grid.two-col,
    .all-services-grid.three-centered,
    .conditions-grid,
    .pain-cards-grid,
    .families-clinics-grid,
    .contact-options-grid,
    .contact-forms-grid,
    .location-cards-grid,
    .position-cards-grid,
    .careers-apply-grid,
    .partner-cards-grid,
    .partner-cards-grid.two-col,
    .partner-cards-grid.one-col,
    .steps-grid,
    .steps-grid-4,
    .stats-grid,
    .trust-grid,
    .benefit-cards-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    /* Image and content two column sections */
    .sts-about-grid,
    .compliance-intro-grid,
    .careers-apply-grid,
    .contact-location-grid {
        grid-template-columns: 1fr !important;
    }

    /* Make images full width on mobile */
    .sts-container img,
    .page-section img {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 20px !important;
    }

    /* Fix padding on sections */
    .page-section,
    section[style*="padding:80px"],
    section[style*="padding: 80px"],
    section[style*="padding:60px"],
    section[style*="padding: 60px"] {
        padding: 40px 20px !important;
    }

    /* Fix container padding */
    .sts-container,
    div[style*="max-width:1200px"],
    div[style*="max-width: 1200px"],
    div[style*="max-width:900px"],
    div[style*="max-width:800px"] {
        padding-left: 20px !important;
        padding-right: 20px !important;
        max-width: 100% !important;
    }

    /* Stack inline flex buttons */
    div[style*="display:flex"][style*="justify-content:center"] {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    /* Fix card widths */
    .all-service-card,
    .service-who-card,
    .service-step-card,
    .clinic-step-card,
    .clinic-service-sign-card,
    .clinic-location-card,
    .contact-option-card,
    .location-card,
    .position-card,
    .pain-card,
    .condition-card,
    .partner-card,
    .families-clinic-card {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Fix font sizes on mobile */
    h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    h3 {
        font-size: 20px !important;
    }

    /* Fix hero banners */
    .sts-full-width-hero {
        height: auto !important;
        min-height: 350px !important;
    }
    .sts-full-width-hero > div:last-child {
        padding: 120px 20px 60px !important;
    }

    /* Fix video section */
    video {
        width: 100% !important;
        height: auto !important;
    }
}
