<style>

/* Section 1 - Hero Image with Vehicle Counter */
.hero {
 min-height: inherit;
  background-image: url('https://service.secureoffersites.com/images/GetLibraryImage?fileNameOrId=890127');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}



.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.72) 35%,
      rgba(0,0,0,0.25) 65%,
      rgba(0,0,0,0.05) 100%
    );
  pointer-events:none;
}

.hero-road-bg {
  position: absolute;
  bottom: -40px;
  left: -5%;
  width: 65%;
  opacity: 0.04;
  pointer-events: none;
  transform: scaleX(-1);
}
.hero-road-bg2 {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 45%;
  opacity: 0.03;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  padding-top: 50px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 94vh;
}
.hero-left { display: flex; flex-direction: column; gap: 30px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: linear-gradient(110deg, #FF5F00 0%, #FF7A1A 40%, #FFB830 100%);
  flex-shrink: 0;
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 900;
  color: #fff;
  line-height: 0.97;
  letter-spacing: -0.04em;
  max-width: 680px;
}
.hero-headline  .accent { 
color: #FF5F00 !important; 
}

.hero-subhead {
  font-size: 16px;
  color: rgba(255,255,255,0.89);
  line-height: 1.7;
  max-width: 520px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(110deg, #FF5F00 0%, #FF7A1A 40%, #FFB830 100%);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 24px;
  transition: all 0.2s;
text-decoration: none !important;
}
.btn-primary:hover { background: linear-gradient(110deg, #FF5F00 0%, #FF7A1A 40%, #FFB830 100%); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
text-decoration: none !important;
  padding: 14px 24px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); }

/* Hero slide arrows */
.hero-arrows {
  position: absolute;
  bottom: 52px;
  right: 48px;
  z-index: 5;
  display: flex;
  gap: 12px;
}
.hero-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(6px);
}
.hero-arrow:hover {
  border-color: #FF5F00;
  background: linear-gradient(110deg, #FF5F00 0%, #FF7A1A 40%, #FFB830 100%);
  color: #fff;
}


/* Dashboard Card */
.hero-dashboard {
  background: linear-gradient(160deg, rgba(30,30,30,0.72) 0%, rgba(20,20,20,0.68) 60%, rgba(10,10,10,0.60) 100%);
  border: 1px solid rgba(180,180,180,0.25);
  padding: 32px 28px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.dashboard-label {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard-label-dot {
  content: '';
  display: block;
  width: 7px; height: 7px;
  background: #4ADE80;
  box-shadow: 0 0 8px rgba(74,222,128,0.9);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.dashboard-stats { display: flex; flex-direction: column; }
.dashboard-stat {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.dashboard-stat:last-child { border-bottom: none; padding-bottom: 0; }
.dashboard-stat:first-child { padding-top: 0; }
.stat-number {
  font-family: var(--display);
  font-weight: 900;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.stat-number.anchor { font-size: 30px; color: #FF5F00; }
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  text-align: right;
  line-height: 1.3;
  max-width: 120px;
}

/* Brand bar */
.hero-brand-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 100%);
  padding: 18px 48px;
}
.hero-brand-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.brand-bar-label {
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-logos { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.brand-logo-pill {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s, border-color 0.2s;
}
.brand-logo-pill:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }


/* Custom sizing to make the counter take center stage */
.counter-display-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}
.stat-number.massive-odometer {
  font-family: var(--display), sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 5.5vw, 72px);
  display: inline-block;
  line-height: 1;
  letter-spacing: -0.04em;
  
  /* One Solid, High-Intensity Orange Color */
  color: #FF5F00; 
  
  /* High-Intensity Laser-Orange Glow Signature */
  filter: drop-shadow(0px 0px 10px rgba(255, 95, 0, 0.70)) 
          drop-shadow(0px 5px 25px rgba(255, 60, 0, 0.35));
}


.stat-label.wide-label {
  text-align: left;
  max-width: 100%;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}



/* Section 1 - Hero Image with Vehicle Counter on Mobile */
/* Mobile Responsive Overrides */
@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr; /* Switch from 2-columns to a stacked layout */
    gap: 40px;
    padding: 80px 24px 60px 24px; /* Slightly tighter padding for mobile screens */
    min-height: auto; /* Allow content to dictate size naturally on mobile */
    text-align: center; /* Center typography for phone layouts */
  }

  .hero-eyebrow {
    justify-content: center; /* Center the location eyebrow text dot */
    font-size: 11px;
    line-height: 1.4;
  }

  .hero-headline {
    max-width: 100%;
    margin: 0 auto;
    /* Keeps it big, but forces it safe so it never clips on small screens */
    font-size: clamp(36px, 8vw, 48px); 
  }

  .hero-subhead {
    max-width: 100%;
    margin: 0 auto;
    font-size: 15px;
  }

  .hero-ctas {
    justify-content: center; /* Center the primary CTA button */
  }

  .hero-dashboard {
    max-width: 480px; /* Prevents the dashboard card from stretching awkwardly wide */
    margin: 0 auto;  /* Centers the card on the phone layout */
    padding: 24px 20px;
  }

  .counter-display-wrapper {
    align-items: center; /* Center the counters internally */
  }

  .stat-number.massive-odometer {
    /* Shrinks the 1.5 million count safely on phone screens so it stays on one line */
    font-size: clamp(36px, 9vw, 52px); 
    letter-spacing: -0.02em;
  }

  .stat-label.wide-label {
    text-align: center; /* Center description text under the mobile odometer */
  }
}



/* Section 5 - Affordability Calculator */

#affordability-calculator {
background-color:#f4f4f4 !important;
}



/* Heading */
#affordability-calculator .section-heading {
    color:#111111 !important;
    font-size:34px !important;
    font-weight:900 !important;
    letter-spacing:-0.03em !important;
}



/* Labels */
#affordability-calculator .field-label {
    color:#6B6560 !important;
    font-size:11px !important;
    font-weight:700 !important;
    text-transform:uppercase !important;
    letter-spacing:.12em !important;
}



/* Inputs */
#affordability-calculator input.form-control {

    background:#F8F7F5 !important;

    border:1.5px solid #D8D5D1 !important;

    border-radius:0 !important;

    color:#111111 !important;

    box-shadow:none !important;

}


#affordability-calculator input.form-control:focus {

    background:#FFFFFF !important;

    border-color:#FF5F00 !important;

}



/* Dropdowns */
#affordability-calculator .custom-select-dropdown {

    background:#F8F7F5 !important;

    border:1.5px solid #D8D5D1 !important;

    color:#111111 !important;

}



#affordability-calculator .custom-select-dropdown em {

    color:#111111 !important;

}



/* Budget Section */
#affordability-calculator .budget-section {

    background:#F8F7F5 !important;

    border:1px solid #D8D5D1 !important;

}



/* Budget Text */
#affordability-calculator .budget-label {

    color:#6B6560 !important;

    font-size:12px !important;

    text-transform:uppercase !important;

    letter-spacing:.08em !important;

}


#affordability-calculator .budget-price {

    color:#111111 !important;

    font-size:48px !important;

    font-weight:900 !important;

}



/* Button */
#affordability-calculator .view-vehicles-btn {

    background:#c4c0bb !important;
font-size:13px;
    color:#fffff !important;
border-radius:0 !important;


text-transform: uppercase !important;

}



/* Button Hover */
#affordability-calculator .view-vehicles-btn:hover,
#affordability-calculator .btnDisable:hover {

    background:#000000 !important;

    color:#ffffff !important;

}



/* Disclaimer */
#affordability-calculator .disclaimer-text {

    color:#9CA3AF !important;

    font-size:11px !important;

    line-height:1.6 !important;

}


/* Section 6 - Location Cards */

/* Locations Grid Layout */
#locations-grid,
.locations-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 48px !important;
    width: 100% !important;
}


/* Location Card */
.location-card {
    background: #fff !important;
    overflow: hidden !important;
    position: relative !important;
    transition: transform .2s ease, box-shadow .2s ease !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.08), 
                0 0 0 1px rgba(0,0,0,.06) !important;
}


/* Hover Effect */
.location-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 32px rgba(0,0,0,.14) !important;
    z-index: 2 !important;
}


/* Brand Accent Bar */
.location-card-accent {
    height: 4px !important;
    width: 100% !important;
}

.accent-toyota {
    background: #EB0A1E !important;
}

.accent-honda {
    background: #007cc2 !important;
}

.accent-ford {
    background: #003499 !important;
}

.accent-acura {
    background: #1A1A1A !important;
}

.accent-mazda {
    background: #0D0D0D !important;
}


/* Image Area */
.location-card-map-wrap {
    width: 100% !important;
    aspect-ratio: 3 / 2 !important; /* MATCHES YOUR 3000x2000 OR 1200x800 IMAGES PERFECTLY */
    overflow: hidden !important;
}

.location-card-map-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Now it just fills neatly without a heavy digital zoom */
    
    /* Clean up the rendering rules for standard photos */
    image-rendering: auto !important; 
}

/* Card Content */
.location-card-body {
    padding: 28px !important;
}


.location-card-name {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #000 !important;
    margin-bottom: 10px !important;
}


.location-card-address {
    font-size: 14px !important;
    color: #666 !important;
    margin-bottom: 18px !important;
}


/* Phone Links */
.location-card-phones {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-bottom: 20px !important;
    font-weight: 800;
}

.location-card-phones a {
    transition: color 0.3s ease !important;
}

.location-card-phones a:hover {
    color: #ff5f00 !important;
}


.location-card-phone {
    font-size: 14px !important;
    color: #000 !important;
    text-decoration: none !important;
}


/* Buttons */
.location-card-links {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}


.location-link {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
    padding: 8px 14px !important;
    border: 1.5px solid #000 !important;
    color: #000 !important;
    background: transparent !important;
    text-decoration: none !important;
}


.location-link:hover {
    background: #000 !important;
    color: #fff !important;
}


/* Primary Button */
.location-link.primary {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}


.location-link.primary:hover {
    background: #fff !important;
    color: #000 !important;
}

.phone-label {
    font-weight: 500;
    margin-left: 8px !important;
    letter-spacing: .08em;
}


/* Responsive Layouts */
@media (max-width: 991px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }
}

/* Mobile: Turns the entire layout grid cleanly into a swiping card reel */
@media (max-width: 767px) {
    #locations-grid,
    .locations-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 20px !important;
        padding-bottom: 20px !important; /* Prevents box shadow clipping during scroll */
        scrollbar-width: none !important; /* Hides horizontal bars on Firefox */
    }

    /* Hides horizontal scrollbars on Chrome, Safari, and Opera */
    .locations-grid::-webkit-scrollbar {
        display: none !important;
    }

    /* Standardizes card width so they peer off-screen to hint at multi-store options */
    .location-card {
        flex: 0 0 85% !important; 
        scroll-snap-align: start !important;
    }
}


/* Section 7 - Location Slideshow*/
/* Slider Outer Container Wrapper */
.loc-slider-wrap { 
  position: relative; 
  width: 100%; 
  overflow: hidden; 
  background: #111; 
  aspect-ratio: 3 / 1; 
  border-radius: 8px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
}

/* Track running the cards horizontally */
.loc-slider-track { 
  display: flex; 
  height: 100%; 
  width: 100%; 
  transition: transform 0.7s cubic-bezier(.65,.05,.36,1); 
}

/* Individual Slide Layout */
.loc-slide { 
  position: relative; 
  flex: 0 0 100%; 
  height: 100%; 
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #111;
}

/* Scaled, uncropped landscape image placement */
.loc-slide img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
  object-position: left center; 
  display: block; 
}

/* Overlay Text Badge */
.loc-slide-badge {
  position: absolute; 
  top: 0; 
  right: 0; 
  bottom: 0; 
  width: 42%; 
  min-width: 340px;
  background: linear-gradient(135deg, #FF5F00 0%, #FF7A1A 45%, #FFB830 100%);
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  gap: 14px; 
  padding: 0 44px;
  z-index: 2;
}

.loc-slide-title { 
  color: #fff; 
  font-family: sans-serif; 
  font-weight: 800; 
  font-size: 42px; 
  line-height: 1.1; 
  letter-spacing: -0.02em; 
}

.loc-slide-visit { 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  color: white !important; 
  font-family: sans-serif; 
  font-weight: 700; 
  font-size: 15px; 
  letter-spacing: 0.02em; 
  text-decoration: none !important; 
  width: fit-content; 
  transition: opacity 0.2s; 
}
.loc-slide-visit:hover { opacity: 0.75; }

/* Control Navigation Elements */
.loc-slider-arrows { 
  position: absolute; 
  top: 50%; 
  left: 0; 
  right: 0; 
  transform: translateY(-50%); 
  z-index: 6; 
  display: flex; 
  justify-content: space-between; 
  padding: 0 24px; 
  pointer-events: none; 
}

.loc-slider-arrow {
  width: 52px; 
  height: 52px; 
  border: 1px solid rgba(255,255,255,0.18); 
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 18px;
  cursor: pointer; 
  transition: all 0.2s; 
  backdrop-filter: blur(6px); 
  pointer-events: auto;
  border-radius: 50%;
}
.loc-slider-arrow:hover { 
  border-color: #FF5F00; 
  background: linear-gradient(110deg, #FF5F00 0%, #FF7A1A 40%, #FFB830 100%); 
  color: #fff; 
}

.loc-slider-dots { 
  position: absolute; 
  bottom: 20px; 
  left: 0; 
  right: 0; 
  z-index: 6; 
  display: flex; 
  justify-content: center; 
  gap: 8px; 
}

.loc-slider-dot { 
  width: 8px; 
  height: 8px; 
  border-radius: 50%; 
  border: none; 
  background: rgba(255,255,255,0.45); 
  cursor: pointer; 
  padding: 0; 
  transition: background 0.2s, transform 0.2s; 
}
.loc-slider-dot.active { background: #fff; transform: scale(1.25); }

/* Standard Section Framing Text */
.container { font-family: sans-serif; max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 24px; padding: 0 15px; }
.section-eyebrow { font-size: 14px; font-weight: 700; color: #718096; text-transform: uppercase; letter-spacing: 0.05em; }
.section-headline { font-size: 32px; font-weight: 800; color: #1a202c; margin: 4px 0; }
.section-sub { font-size: 16px; color: #4a5568; }

/* Responsive Media Breakdown Query */
@media (max-width: 780px) {
  .loc-slider-wrap { aspect-ratio: 16 / 10; } 
  .loc-slide img { display: block; object-position: center; } 
  .loc-slide-badge { width: 55%; min-width: auto; padding: 0 20px; gap: 10px; }
  .loc-slide-title { font-size: 24px; }
  .loc-slide-visit { font-size: 12px; }
  .loc-slider-arrow { width: 40px; height: 40px; font-size: 14px; }
}


/* Section 8 -  Executive Section */

.exec-node {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer; min-width: 80px;
}
.exec-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #EDECEA;
  border: 3px solid #E0DDD8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.exec-circle img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: center 25%;
}


.exec-node.active .exec-circle {
  border-color: #FF5F00;
  box-shadow: 0 0 0 4px rgba(255,95,0,0.12);
}
.exec-node:hover:not(.active) .exec-circle { border-color: rgba(255,95,0,0.4); }
.exec-name {
  font-size: 12px; font-weight: 600; color: var(--gray-text);
  text-align: center; transition: color 0.2s; max-width: 90px; line-height: 1.3;
}
.exec-node.active .exec-name { color: var(--black); font-weight: 700; }

/* Bio Section styling with the image container above the text */
.exec-bio-slide { 
  animation: bioFade 0.35s ease; 
  display: flex;
  flex-direction: column;
  align-items: center;
}
.exec-bio-photo {
  width: 250px; /* Adjust size as needed for a larger display photo */
  height: 250px;
  border-radius: 50%;
  background: #EDECEA;
  overflow: hidden;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exec-bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes bioFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }



/* Section 9 - Timeline */

 /* =========================================
       MAIN TIMELINE
       ========================================= */

    .timeline-section {
        padding: 80px 0;
        background: #f4f4f4;
        overflow: hidden;
    }


    /* =========================================
       HEADER
       ========================================= */

    .timeline-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .timeline-label {
        color: #FF5F00;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .15em;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .timeline-heading {
        font-size: 48px;
        font-weight: 800;
        line-height: 1.1;
        margin: 0;
        color: #111;
    }


    /* =========================================
       TIMELINE TRACK
       ========================================= */

    .timeline-track {
        position: relative;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: flex-start;
        width: 80%;
        max-width: 950px;
        gap: 20px;
        padding: 0;
        margin: 45px auto 0;
        border: none !important;
        box-sizing: border-box;
    }


    /* Connecting line */

    .timeline-track::before {
        content: '';
        position: absolute;
        top: 32.5px;
        left: 32px;
        right: 32px;
        height: 2px;
        background: #d9d9d9;
        z-index: 1;
    }


    /* =========================================
       TIMELINE NODE
       ========================================= */

    .timeline-node {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
        flex-shrink: 0;
        transition: .3s ease;
        max-width: 100%; /* FIX: Prevents flex container blowout */
    }


    /* =========================================
       CIRCLE
       ========================================= */

    .timeline-circle {
        width: 65px;
        height: 65px;
        min-width: 65px;
        min-height: 65px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
        border: 2px solid #d9d9d9;
        color: #777;
        transition: .3s ease;
        box-sizing: border-box;
    }


    .timeline-circle svg {
        width: 28px !important;
        height: 28px !important;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.5;
    }


    /* =========================================
       YEAR
       ========================================= */

    .timeline-year {
        margin-top: 14px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: #777;
        background: #f4f4f4;
        padding: 0 4px;
        white-space: nowrap;
        transition: .3s ease;
    }


    /* =========================================
       ACTIVE
       ========================================= */

    .timeline-node.active .timeline-circle {
        background: #FF5F00;
        border-color: #FF5F00;
        color: #fff;
        box-shadow: 0 8px 20px rgba(255,95,0,.25);
    }


    .timeline-node.active .timeline-year {
        color: #FF5F00;
    }


    /* =========================================
       HOVER
       ========================================= */

    .timeline-node:hover .timeline-circle {
        background: #FF5F00;
        border-color: #FF5F00;
        color: #fff;
    }


    .timeline-node:hover .timeline-year {
        color: #FF5F00;
    }


    /* =========================================
       CONTENT
       ========================================= */

    .timeline-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 35px;
        width: 100%;
        margin-top: 60px;
        opacity: 1;
        transition: opacity .2s ease;
        box-sizing: border-box;
    }


    /* =========================================
       IMAGE WRAPPER
       ========================================= */

    .timeline-img-wrap {
        width: 100% !important;
        max-width: 900px !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }


    /* =========================================
       SINGLE TIMELINE IMAGE
       ========================================= */

    .timeline-img-wrap > img {
        display: block !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        min-width: 0 !important;
        min-height: 0 !important;
        max-width: min(100%, 700px) !important; /* FIX: Prevents cropping on smaller viewports */
        max-height: 375px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        object-fit: contain !important;
        object-position: center center !important;
        border: 0 !important;
        transform: none !important;
        box-sizing: border-box !important;
    }


    /* =========================================
       IMAGE GALLERY
       ========================================= */

    .timeline-gallery {
        width: 100%;
        max-width: 1000px;
        height: auto;
        min-height: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        overflow: visible;
        box-sizing: border-box;
    }


    /* =========================================
       GALLERY ITEMS
       ========================================= */

    .timeline-gallery-item {
        flex: 1;
        min-width: 0;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: visible;
        box-sizing: border-box;
    }


    /* =========================================
       GALLERY IMAGES
       ========================================= */

    .timeline-gallery-item img {
        display: block !important;
        width: auto !important;
        height: auto !important;
        min-width: 0 !important;
        min-height: 0 !important;
        max-width: 100% !important;
        max-height: 375px !important;
        object-fit: contain !important;
        object-position: center center !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }


    /* =========================================
       TWO IMAGES
       ========================================= */

    .timeline-gallery.gallery-two {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }


    .timeline-gallery.gallery-two .timeline-gallery-item {
        width: 50%;
        flex: 0 1 50%;
    }


    /* =========================================
       THREE IMAGES
       ========================================= */

    .timeline-gallery.gallery-three {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }


    .timeline-gallery.gallery-three .timeline-gallery-item {
        width: 33.333%;
        flex: 0 1 33.333%;
    }


    /* =========================================
       DESCRIPTION
       ========================================= */

    .timeline-desc-row {
        width: 100%;
        max-width: 900px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 30px;
        text-align: left;
        box-sizing: border-box;
    }


    .timeline-desc-year {
        font-size: 42px;
        font-weight: 800;
        color: #FF5F00;
        line-height: 1;
        flex-shrink: 0;
    }


    .timeline-desc-title {
        font-size: 32px;
        font-weight: 800;
        color: #111;
        margin-bottom: 15px;
        line-height: 1.2;
    }


    .timeline-desc-text {
        font-size: 16px;
        line-height: 1.7;
        color: #555;
        margin: 0;
    }


    /* =========================================
       TABLET
       ========================================= */

    @media (max-width: 1100px) {

        .timeline-track {
            width: 100%;
            max-width: none;
            justify-content: flex-start;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 0 30px 25px;
            box-sizing: border-box;
        }


        .timeline-track::before {
            display: none !important;
        }


        .timeline-node::before {
            content: '';
            position: absolute;
            top: 32.5px;
            left: 50%;
            width: calc(100% + 35px);
            height: 2px;
            background: #d9d9d9;
            z-index: -1;
        }


        .timeline-node:last-child::before {
            display: none;
        }


        .timeline-heading {
            font-size: 42px;
        }


        .timeline-img-wrap {
            width: 100% !important;
            max-width: 900px !important;
        }


        .timeline-img-wrap > img {
            max-width: min(100%, 650px) !important;
            max-height: 350px !important;
        }


        .timeline-desc-row {
            width: calc(100% - 40px);
        }
    }


    /* =========================================
       MOBILE
       ========================================= */

    @media (max-width: 768px) {

        .timeline-section {
            padding: 60px 20px;
            box-sizing: border-box;
        }


        .timeline-header {
            margin-bottom: 35px;
            padding: 0;
        }


        .timeline-heading {
            font-size: 36px;
        }


        .timeline-label {
            font-size: 11px;
        }


        /* Timeline */

        .timeline-track {
            width: calc(100% + 40px);
            margin-left: -20px;
            margin-right: -20px;
            padding: 0 30px 25px;
            gap: 35px;
            box-sizing: border-box;
        }


        .timeline-circle {
            width: 58px;
            height: 58px;
            min-width: 58px;
            min-height: 58px;
        }


        .timeline-circle svg {
            width: 24px !important;
            height: 24px !important;
        }


        .timeline-node::before {
            top: 29px;
        }


        /* =====================================
           SINGLE IMAGE
           ===================================== */

        .timeline-img-wrap {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            min-height: 0 !important;
            overflow: visible !important;
            padding: 0 10px !important;
        }


        .timeline-img-wrap > img {
            width: auto !important;
            height: auto !important;
            max-width: 100% !important;
            max-height: 325px !important;
            object-fit: contain !important;
            object-position: center center !important;
        }


        /* =====================================
           GALLERY
           ===================================== */

        .timeline-gallery,
        .timeline-gallery.gallery-two,
        .timeline-gallery.gallery-three {
            width: 100%;
            max-width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
            overflow: visible;
        }


        .timeline-gallery-item,
        .timeline-gallery.gallery-two .timeline-gallery-item,
        .timeline-gallery.gallery-three .timeline-gallery-item {
            width: 100%;
            flex: none;
            height: auto;
            min-height: 0;
            overflow: visible;
        }


        .timeline-gallery-item img {
            width: auto !important;
            height: auto !important;
            max-width: 100% !important;
            max-height: 325px !important;
            object-fit: contain !important;
        }


        /* =====================================
           DESCRIPTION
           ===================================== */

        .timeline-desc-row {
            flex-direction: column;
            align-items: center;
            gap: 15px;
            text-align: center;
            width: 100% !important;
            max-width: 100%;
            padding: 0 10px;
            box-sizing: border-box;
        }


        .timeline-desc-year {
            font-size: 32px;
        }


        .timeline-desc-title {
            font-size: 26px;
            margin-bottom: 12px;
        }


        .timeline-desc-text {
            font-size: 15px;
            line-height: 1.65;
        }
    }


    /* =========================================
       SMALL MOBILE
       ========================================= */

    @media (max-width: 480px) {

        .timeline-section {
            padding: 50px 15px;
        }


        .timeline-heading {
            font-size: 30px;
        }


        .timeline-track {
            gap: 30px;
            padding-left: 25px;
            padding-right: 25px;
        }


        .timeline-circle {
            width: 54px;
            height: 54px;
            min-width: 54px;
            min-height: 54px;
        }


        .timeline-circle svg {
            width: 22px !important;
            height: 22px !important;
        }


        .timeline-node::before {
            top: 27px;
            width: calc(100% + 30px);
        }


        /* Single image */

        .timeline-img-wrap > img {
            max-width: 100% !important;
            max-height: 275px !important;
        }


        /* Gallery */

        .timeline-gallery-item img {
            max-height: 275px !important;
        }


        /* Description */

        .timeline-desc-year {
            font-size: 28px;
        }


        .timeline-desc-title {
            font-size: 23px;
        }


        .timeline-desc-text {
            font-size: 14px;
        }
    }


  /* Section 10 - Community*/

  /* YOUR DESKTOP STYLES */
.community-section { background: #F4F4F4; padding: 88px 48px; }
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; }
.community-left { display: flex; flex-direction: column; gap: 32px; align-self: stretch; }

.org-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.org-logo-cell {
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 16px 12px;
  aspect-ratio: 4/3;
}
.org-logo-cell img {
  max-width: 90%; max-height: 72px;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.25s, opacity 0.25s;
}
.org-logo-cell:hover img { filter: grayscale(0%); opacity: 1; }

/* CHANGED: Switched to grid layout with fractional rows to span exactly 100% height of left column */
.community-right {
  display: grid;
  grid-template-rows: 2fr 1fr; /* Top photo is twice as tall as the bottom row */
  gap: 20px;
  align-self: stretch;
  height: 100%;
}

/* CHANGED: Removed fixed height so it scales perfectly */
.community-photo-large {
  height: 100%;
}
.community-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 100%;
}

/* CHANGED: Replaced fixed 180px height with 100% to fill the grid row assignment */
.community-photo {
  background: var(--gray-mid);
  position: relative;
  overflow: hidden;
  height: 100%; 
  display: flex; 
  align-items: center; 
  justify-content: center;
}
.community-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.community-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  padding: 20px 15px 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em; 
  text-transform: uppercase;
}



/* Section 10 - About Us */
.about-section { background: #FFFFFF; padding: 88px 48px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
.about-left { display: flex; flex-direction: column; gap: 24px; }
.milestone-callout {
  background: linear-gradient(110deg, #FF5F00 0%, #FF7A1A 40%, #FFB830 100%);
  padding: 28px 28px;
  display: flex; align-items: center; gap: 20px;
}
.milestone-number { font-family: var(--display); font-size: 30px; font-weight: 700; color: #fff; letter-spacing: -0.03em; white-space: nowrap; }
.milestone-text { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.milestone-text strong { color: #fff; display: block; margin-bottom: 2px; font-size: 14px; }
.about-right { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: stretch; }
.about-photo-block {
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--gray-mid);
  min-height: 120px;
  overflow: hidden; /* Added to contain images */
}
/* Ensure images fill the blocks nicely without breaking layout */
.about-photo-block img { width: 100%; height: 100%; object-fit: cover; display: block;
 }

/* Ensure images fill the blocks nicely without breaking layout */
.about-photo-block-two img { width: 100%; height: 100%; object-fit: cover; display: block;
margin-top:15px;
 }

.about-photo-block.tall { grid-row: 1/3; min-height: 0; }
.about-values { display: flex; flex-direction: column; gap: 16px; }
.about-value { display: flex; align-items: flex-start; gap: 14px; }
.about-value-icon {
  width: 30px; height: 30px; background: linear-gradient(110deg, #FF5F00 0%, #FF7A1A 40%, #FFB830 100%); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.about-value-text h4 { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.about-value-text p { font-size: 13px; color: var(--gray-text); line-height: 1.5; }


/* =========================================
   MOBILE RESPONSIVE OVERRIDES
   ========================================= */
@media (max-width: 991px) {
  /* Reduce outer padding for smaller screens */
  .about-section { padding: 40px 20px; }
  
  /* Stack the main left and right sections vertically */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  
  /* Stack the photo blocks vertically on mobile */
  .about-right { grid-template-columns: 1fr; gap: 12px; }
  
  /* Reset the row spanning for the tall block so it sits normally */
  .about-photo-block.tall { grid-row: auto; min-height: 250px; }
  
  /* Add a gap inside the nested photo grid if needed */
  .about-photo-grid { display: flex; flex-direction: column; gap: 12px; }
  
  /* Adjust milestone padding and wrap if screens get extremely small */
  .milestone-callout { padding: 20px; flex-wrap: wrap; gap: 12px; }
  
  /* Hide the <br class="desktop-br"> tag on mobile so the headline doesn't break awkwardly */
  .desktop-br { display: none; }
}




/* =========================================
    MOBILE RESPONSIVE OVERRIDES
   ========================================= */
@media (max-width: 991px) {
  /* Reduce outer padding */
  .community-section { padding: 40px 20px; }
  
  /* Stack the main left text and right photos */
  .community-grid { grid-template-columns: 1fr; gap: 40px; }
  
  /* Drop logos to 2 columns so they aren't cramped */
  .org-logo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  
  /* CHANGED: Restore natural block sizing for mobile stacking */
  .community-right { display: flex; flex-direction: column; gap: 20px; }
  .community-photo-large { height: 280px; }
  .community-photo-row { grid-template-columns: 1fr; }
  .community-photo { height: 180px; }
}

 /* Section 11 - Coffee and Cars/Events */


 .coffee-section { 
  background: #FFFFFF; 
  padding: 88px 48px; 
  position: relative; 
  overflow: hidden; 
}
.coffee-road {
  position: absolute; 
  right: -5%; 
  top: 50%;
  transform: translateY(-50%);
  width: 30%; 
  opacity: 0.04; 
  pointer-events: none;
}
.coffee-grid { 
  display: grid; 
  grid-template-columns: 1fr 420px; 
  gap: 48px; 
  align-items: stretch; 
  position: relative; 
  z-index: 1; 
}

/* Updated to include the new background and inward padding */
.coffee-left { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
  padding: 40px 40px 64px 40px; /* Inset padding (top, sides, extra bottom) */
  box-sizing: border-box;
}

.coffee-desc { 
  font-size: 16px; 
  color: var(--gray-text); 
  line-height: 1.7; 
}
.coffee-meta { 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
}
.coffee-meta-item { 
  display: flex; 
  align-items: center; 
  font-size: 14px; 
  color: var(--gray-text); 
}
.coffee-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #FF7A1A;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

/* ==========================================================================
   Coffee & Cars Custom Lead Form (Box Container)
   ========================================================================== */

/* 1. Main Form Card Container */
.lead-form {
  max-width: 540px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  border-top: 5px solid #ff5f00; /* Subtle orange brand accent */
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
}

/* Reset inner box background to keep it seamless */
.lead-form-box {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

/* 2. Header (Inside Box) */
.lead-form .text-center {
  margin-bottom: 2rem;
}

.lead-form-heading {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;

  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.lead-form-sub-heading {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* 3. Honeypot Field (Hidden) */
.honeypot,
label[for="honeypot"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

/* 4. Form Groups & Input Controls */
.mobile-field-label-top {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 1.25rem !important;
}

.mobile-field-label-top label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.35rem;
  transition: color 0.2s ease;
}

.form-control,
.form-select {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #1e293b;
  background-color: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
  outline: none;
  box-sizing: border-box;
}

.form-control::placeholder {
  color: #94a3b8;
  opacity: 0.6;
}

/* Focus States */
.form-control:focus,
.form-select:focus {
  background-color: #ffffff;
  border-color: #ff5f00;
  box-shadow: 0 0 0 4px rgba(255, 95, 0, 0.15);
}

.mobile-field-label-top:focus-within label {
  color: #ff5f00;
}

/* Select Arrow */
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%3c475569' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* 5. Submit Button */
.custom-page-lead-submittion-btn {
  margin-top: 1.5rem;
}

.custom-page-lead-submittion-btn input[type="submit"] {
  display: inline-block;
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(255, 95, 0, 0.35);
}

.custom-page-lead-submittion-btn input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 95, 0, 0.45);
  filter: brightness(1.05);
}

.custom-page-lead-submittion-btn input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 95, 0, 0.3);
}

/* 6. Mobile Responsiveness */
@media (max-width: 576px) {
  .lead-form {
    padding: 1.75rem 1.25rem;
    border-radius: 12px;
  }

  .lead-form-heading {
    font-size: 1.5rem;
  }
}



 /* Section 12 - Newsletter */

 /* YOUR DESKTOP STYLES (Updated background and top separation) */
.newsletter-section { 
  background-color: #1A1A1A !important; /* Dark off-black to ensure unmistakable separation */
  background: #1A1A1A !important;       /* Double declaration to override any shorthand properties */
  padding: 140px 48px 88px 48px;        /* Increased top padding for clear section separation */
}
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.newsletter-visual {
  background: #EBEBEB;
  padding: 52px 48px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid #E0E0E0;
}
.newsletter-road-bg {
  position: absolute; bottom: -10px; right: -40px;
  width: 70%; opacity: 0.06; pointer-events: none;
}
.newsletter-issue {
  font-family: var(--mono); font-size: 10px; color: #FF5F00;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.newsletter-issue::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: linear-gradient(110deg, #FF5F00 0%, #FF7A1A 40%, #FFB830 100%);
}
.newsletter-title {
  font-family: var(--display); font-size: 36px; font-weight: 900;
  color: var(--black); letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 6px;
}
.newsletter-subtitle {
  font-size: 12px; font-weight: 500; color: var(--gray-text);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 12px; margin-bottom: 28px;
}
.newsletter-excerpt { font-size: 14px; color: var(--gray-text); line-height: 1.7; }
.newsletter-right { display: flex; flex-direction: column; gap: 24px; padding: 52px 48px; }

/* =========================================
   MOBILE RESPONSIVE OVERRIDES
   ========================================= */
@media (max-width: 991px) {
  /* Increased top mobile padding to maintain separation on smaller screens */
  .newsletter-section { 
    padding: 80px 20px 40px 20px; 
    background-color: #1A1A1A !important;
    background: #1A1A1A !important;
  }
  
  /* Stack the left (visual) and right (text) columns vertically */
  .newsletter-grid { grid-template-columns: 1fr; }
  
  /* Adjust padding on the visual side and swap the vertical border for a horizontal one */
  .newsletter-visual { 
    padding: 30px 20px; 
    border-right: none; 
    border-bottom: 1px solid #E0E0E0; 
  }
  
  /* Adjust padding on the text side */
  .newsletter-right { padding: 30px 20px; }
}


  /* Section 13 - Careers */

  /* Base Section Styles */
.careers-section { 
  background: linear-gradient(110deg, #FF5F00 0%, #FF7A1A 40%, #FFB830 100%); 
  padding: 88px 48px; 
  position: relative; 
  overflow: hidden; 
  box-sizing: border-box;
}

.careers-section .careers-road {
  position: absolute; left: -5%; bottom: -10px;
  width: 40%; opacity: 0.08; pointer-events: none;
  transform: scaleX(-1);
}

.careers-section .careers-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 72px; 
  align-items: center; 
  position: relative; 
  z-index: 1; 
}

.careers-section .careers-left { 
  display: flex; 
  flex-direction: column; 
  gap: 24px; 
  padding-left: 40px; /* Adjust this number to add more or less space */
}

.careers-section .careers-headline {
  font-family: var(--display, 'Arial Black', sans-serif); 
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900; color: #fff; letter-spacing: -0.035em;
  line-height: 1.0; margin: 0;
}

.careers-section .careers-sub { 
  font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.65; margin: 0; 
}

.careers-section .careers-perks { 
  display: flex; flex-direction: column; gap: 10px; 
}

.careers-section .careers-perk {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.9);
  line-height: 1.4;
}

.careers-section .careers-perk-bullet {
  width: 6px; height: 6px; background: #fff; flex-shrink: 0;
  border-radius: 50%;
  margin-top: 6px; /* Aligns bullet with top line of text if it wraps */
}

.careers-section .careers-right {
  background: linear-gradient(160deg, rgba(255,0,0,0.25) 0%, rgba(255,93,93,0.12) 100%);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 28px;
  border-radius: 8px;
}

.careers-section .careers-role-group-label {
  font-family: var(--mono, 'Courier New', monospace); 
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.6); letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.careers-section .careers-role-list { 
  display: flex; flex-direction: column; gap: 6px; 
}

.careers-section .careers-role {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; color: #fff; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 12px;
  line-height: 1.3;
}

.careers-section .careers-role:last-child { 
  border-bottom: none; 
}

.careers-section .careers-role-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255,255,255,0.2); color: #fff; padding: 4px 8px;
  border-radius: 4px; white-space: nowrap;
}

.careers-section .careers-ctas { 
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; 
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 900px) {
  .careers-section {
    padding: 48px 24px; /* Tighter outer padding */
  }
  
  .careers-section .careers-grid {
    grid-template-columns: 1fr; /* Stacks the columns */
    gap: 40px; /* Reduces gap between left and right sections */
  }
  
  .careers-section .careers-right {
    padding: 24px 20px; /* Tighter padding inside the job list box */
  }

  /* Ensures text wraps nicely on very small screens instead of overflowing */
  .careers-section .careers-role {
    flex-direction: column; 
    align-items: flex-start; 
    gap: 8px;
  }
}

 /* Section 14 - Reviews */

 /* --- Base Section & Header --- */
.reviews-section { padding: 88px 24px; background-color: #fcfcfc; font-family: sans-serif; box-sizing: border-box; }
.reviews-section-inner { max-width: 1200px; margin: 0 auto; }
.reviews-section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 32px; }
.section-eyebrow { font-size: 14px; font-weight: 700; text-transform: uppercase; color: #888; letter-spacing: 0.1em; margin-bottom: 12px; }
.section-headline { font-family: 'Arial Black', sans-serif; font-size: clamp(32px, 4vw, 48px); font-weight: 900; margin: 0 0 8px 0; line-height: 1.1; color: #111; }
.section-sub { font-size: 16px; color: #666; margin: 0; }
.reviews-avg-block { display: flex; align-items: center; gap: 16px; }
.reviews-avg-num { font-family: 'Arial Black', sans-serif; font-size: 64px; font-weight: 900; color: #111; line-height: 1; }
.reviews-avg-stars { color: #FF5F00; font-size: 20px; letter-spacing: 2px; margin-bottom: 4px; }
.reviews-avg-label { font-size: 13px; color: #666; }

/* --- CSS-Only Carousel Mechanics --- */
.review-carousel { 
  position: relative; 
  width: 100%; 
}

.review-track { 
  display: flex; 
  gap: 24px; 
  overflow-x: auto; 
  scroll-snap-type: x mandatory; 
  scroll-behavior: smooth; 
  -webkit-overflow-scrolling: touch; 
  padding-bottom: 16px; 

  /* Custom Scrollbar */
  scrollbar-width: thin; 
  scrollbar-color: #FF5F00 #eaeaea; 
}

.review-track::-webkit-scrollbar { height: 8px; }
.review-track::-webkit-scrollbar-track { background: #eaeaea; border-radius: 10px; margin: 0 10px; }
.review-track::-webkit-scrollbar-thumb { background: #FF5F00; border-radius: 10px; }
.review-track::-webkit-scrollbar-thumb:hover { background: #FF7A1A; }

/* --- The Slide --- */
.review-slide {
  flex: 0 0 100%; 
  scroll-snap-align: center; 
  background: #fff;
  border: 1px solid #eaeaea;
  padding: 36px 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px; 
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  align-items: center; 
  text-align: center; 
  
  /* UPDATED: Sets a narrower desktop size and keeps it centered */
  max-width: 700px; 
  margin: 0 auto; 
}

/* --- Slide Content --- */
.review-slide-stars { background: linear-gradient(110deg, #FF5F00 0%, #FF7A1A 40%, #FFB830 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 18px; letter-spacing: 2px; }
.review-slide-store { font-size: 12px; font-weight: 700; color: #888; letter-spacing: 0.12em; text-transform: uppercase; }
.review-slide-quote { font-size: 18px; color: #222; line-height: 1.4; font-style: italic; margin: 0; flex-grow: 1; }
.review-slide-author { font-size: 15px; font-weight: 700; color: #555; margin-top: 4px; }

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
  .reviews-section-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  
  /* On small mobile screens, let it take up full width so text doesn't get overly squished */
  .review-slide {
    max-width: 100%;
  }
}

</style>