:root {
  --primary: #1e3a5f;
  --primary-light: #2d5a8a;
  --primary-dark: #152943;
  --secondary: #d4a944;
  --accent: #10b981;
  --bg: #f8f9fb;
  --bg-alt: #f1f3f7;
  --border: #dde2e9;
  --text: #1f2937;
  --text-muted: #64748b;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: white;
  color: var(--text);
  line-height: 1.7;
}

/* SKIP TO CONTENT LINK - Accessibility */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 700;
  z-index: 200;
  border-radius: 0 0 var(--radius-md) 0;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

/* LOGO SECTION */
.logo-section {
  background: white;
  padding: 40px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.logo-section img {
  max-width: 400px;
  width: 100%;
  height: auto;
  loading: lazy;
}

/* HEADER */
header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

.header-brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}

nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

nav a {
  text-decoration: none;
  color: var(--text-muted);
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

nav a:hover {
  color: var(--primary);
  background: var(--bg);
}

nav a.nav-cta {
  background: var(--primary);
  color: white;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

nav a.nav-cta:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

#langToggle {
  margin-left: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.2s ease;
}

#langToggle:hover {
  background: var(--bg);
  border-color: var(--primary);
}

/* HERO SECTION WITH BACKGROUND IMAGE */
/* TODO: Replace with optimized image (Head Start Cover-desktop.jpg ~300KB) */
.hero {
  background:
    linear-gradient(
      135deg,
      rgba(30, 58, 95, 0.55) 0%,
      rgba(45, 90, 138, 0.55) 100%
    ),
    url('Head Start Cover.jpg');

  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;

  image-rendering: -webkit-optimize-contrast;

  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--primary);
}


.hero::before {
  display: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--secondary);
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: #e0b655;
}

/* STATS BAR */
.stats-bar {
  background: white;
  padding: 40px 20px;
  border-bottom: 1px solid var(--border);
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* SECTIONS */
.section {
  padding: 100px 20px;
  max-width: 1100px;
  margin: auto;
}

.section-alt {
  background: var(--bg);
}

.section h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--primary-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 60px;
  font-size: 1.1rem;
}

/* COURSE GRID */
.grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-size: 1.4rem;
  font-weight: 700;
}

.card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Course details section */
.course-detail {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.course-detail h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.course-detail ul {
  list-style-type: none;
  padding-left: 0;
}

.course-detail li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  color: var(--text-muted);
}

.course-detail li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Read More button for mobile */
.read-more-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  font-size: 0.95rem;
  margin-top: 10px;
}

.read-more-toggle .icon {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more-toggle.active .icon {
  transform: rotate(180deg);
}

/* BENEFITS - CLICKABLE CARDS */
.benefits-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.benefit-card {
  background: white;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  text-align: left;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.benefit-card:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.benefit-card.active {
  border-color: var(--secondary);
  background: linear-gradient(to bottom, #fffbf0 0%, white 100%);
}

.benefit-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: inline-block;
}

.benefit-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
  display: inline-block;
  width: calc(100% - 30px);
}

.benefit-card .expand-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.benefit-card.active .expand-icon {
  transform: rotate(180deg);
}

.benefit-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  margin-top: 0;
}

.benefit-card.active .benefit-details {
  max-height: 500px;
  margin-top: 15px;
}

.benefit-details p {
  color: var(--text-muted);
  font-weight: normal;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  padding: 15px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

/* SCHEDULE TABLE */
.schedule-container {
  max-width: 900px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.schedule-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.schedule-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 8px 0;
}

.schedule-overview {
  margin-top: 30px;
  padding: 25px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.schedule-overview h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.schedule-overview p {
  color: var(--text-muted);
  margin-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

th, td {
  border: 1px solid var(--border);
  padding: 18px 16px;
  text-align: center;
}

th {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

td {
  background: white;
  font-weight: 500;
}

tr:hover td {
  background: var(--bg);
}

/* PRICING SECTION - IMPROVED */
.pricing-section {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pricing-option {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-option.featured {
  border-color: var(--secondary);
  background: linear-gradient(to bottom, #fffbf0 0%, white 100%);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-option:hover:not(.featured) {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.pricing-option h3 {
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.price-display {
  margin-bottom: 24px;
}

.original-price {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 5px;
}

.discounted-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.discount-note {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 5px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: var(--text-muted);
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.pricing-features li.included:before {
  content: "✓";
  color: var(--accent);
}

.pricing-features li.not-included {
  color: var(--text-muted);
  opacity: 0.6;
}

.pricing-features li.not-included:before {
  content: "—";
  color: var(--text-muted);
}

.pricing-table {
  max-width: 1000px;
  margin: 40px auto;
  overflow-x: auto;
  display: none;
}

.pricing-table table {
  background: white;
  box-shadow: var(--shadow-md);
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.pricing-table td {
  font-size: 1rem;
}

.pricing-table tr:last-child {
  background: var(--bg-alt);
  font-weight: 700;
}

.pricing-cards {
  display: none;
}

.pricing-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.pricing-card.featured {
  border-color: var(--secondary);
  background: linear-gradient(to bottom, #fffbf0 0%, white 100%);
}

.pricing-card h3 {
  color: var(--primary-dark);
  font-size: 1.3rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.pricing-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.pricing-card .price-row:last-child {
  border-bottom: none;
}

.pricing-card .price-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-card .price-value {
  font-weight: 700;
  color: var(--primary);
}

.pricing-card .price-value.discounted {
  font-size: 1.2rem;
  color: var(--accent);
}

.pricing-card .features {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.pricing-card .feature-badge {
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  color: var(--text);
}

.pricing-card .feature-badge.active {
  background: var(--accent);
  color: white;
}

/* CONTACT SECTION */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact-info p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-info strong {
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.contact-info a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* FAQ SECTION */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary-dark);
}

.faq-question:hover {
  background: var(--bg);
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-answer-content .mn-version,
.faq-answer-content .en-version {
  margin-bottom: 16px;
}

/* FLOATING CTA BAR */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 12px 16px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  z-index: 99;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.floating-cta.visible {
  transform: translateY(0);
}

.floating-cta .cta {
  width: 100%;
  margin: 0;
  padding: 14px;
  text-align: center;
  font-size: 1rem;
}

/* INFO CARD */
.info-card {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.info-card ul, .info-card ol {
  list-style: none;
  padding: 0;
}

.info-card li {
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
  font-size: 1.05rem;
}

.info-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.info-card ol {
  counter-reset: steps;
}

.info-card ol li {
  counter-increment: steps;
}

.info-card ol li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  background: var(--primary);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
}

/* SCHOLARSHIP HIGHLIGHT */
.scholarship-box {
  background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
  color: white;
  max-width: 700px;
  margin: 40px auto;
  padding: 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.scholarship-box h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.scholarship-box .big-number {
  font-size: 4rem;
  font-weight: 800;
  margin: 20px 0;
}

/* FOOTER */
footer {
  background: var(--primary-dark);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

footer p {
  margin: 8px 0;
  opacity: 0.9;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 40px auto;
  flex-wrap: wrap;
  max-width: 1000px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}

.trust-badge span:first-child {
  font-size: 1.2rem;
}

/* MOBILE */
@media (max-width: 767px) {
  .logo-section {
    padding: 20px 16px;
  }
  
  .logo-section img {
    max-width: 240px;
  }
  
  .header-content { 
    flex-direction: row;
    justify-content: space-between;
    gap: 8px; 
    padding: 12px 16px;
  }
  
  .header-brand {
    font-size: 0.9rem;
    text-align: left;
    line-height: 1.3;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-links { 
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 80px 20px 20px;
    box-shadow: -4px 0 12px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 100;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  nav a {
    padding: 14px 20px;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  nav a.nav-cta {
    padding: 14px 20px;
    width: 100%;
    text-align: center;
    margin-top: 8px;
    border-radius: var(--radius-md);
    border-bottom: none;
  }
  
  #langToggle {
    padding: 12px 20px;
    font-size: 1rem;
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
    min-height: 44px;
  }
  
  /* Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99;
  }
  
  .nav-overlay.active {
    display: block;
  }
  
  /* HERO MOBILE STYLES */
  /* TODO: Replace with optimized mobile image (Head Start Cover-mobile.jpg ~100KB) */
 .hero {
  padding: 60px 16px;
  min-height: 500px;
  background:
    linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(45, 90, 138, 0.9) 100%),
    url('Head Start Cover.jpg');

  background-size: cover;
  background-position: center;
}

  
  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 14px;
  }
  
  .hero h1 { 
    font-size: 1.6rem;
    margin-bottom: 14px;
  }
  
  .hero p { 
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.5;
  }
  
  .cta {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .stats-bar {
    padding: 28px 14px;
  }
  
  .stats-container { 
    grid-template-columns: 1fr; 
    gap: 18px; 
  }
  
  .stat-item h3 {
    font-size: 1.8rem;
  }
  
  .stat-item p {
    font-size: 0.85rem;
  }
  
  .section { 
    padding: 50px 14px 70px; 
  }
  
  .section h2 { 
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
    padding: 0 8px;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .card {
    padding: 28px 20px;
  }
  
  .card-icon {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }
  
  .card h3 {
    font-size: 1.15rem;
  }
  
  .card p {
    font-size: 0.9rem;
  }
  
  .course-detail {
    margin-top: 15px;
    padding-top: 15px;
  }
  
  .course-detail h4 {
    font-size: 1rem;
  }
  
  /* Read More functionality on mobile */
  .read-more-toggle {
    display: block;
  }
  
  .course-detail {
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  
  .course-detail.expanded {
    max-height: 1000px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .benefit-card {
    padding: 16px;
    font-size: 0.9rem;
    min-height: 52px;
  }
  
  .benefit-card h4 {
    font-size: 0.95rem;
    width: calc(100% - 25px);
  }
  
  .benefit-icon {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  
  /* PRICING MOBILE */
  .pricing-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-option.featured {
    transform: none;
  }
  
  .pricing-option:hover:not(.featured) {
    transform: none;
  }
  
  .discounted-price {
    font-size: 1.8rem;
  }
  
  .schedule-container {
    padding: 20px 12px;
    margin: 20px auto;
    overflow-x: auto;
  }
  
  .schedule-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  
  .schedule-header p {
    font-size: 0.9rem;
  }
  
  .schedule-overview {
    padding: 15px;
  }
  
  /* CONTACT SECTION MOBILE */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .map-box {
    height: 300px;
  }
  
  .contact-info {
    padding: 24px;
  }
  
  /* FAQ MOBILE */
  .faq-question {
    padding: 18px;
    font-size: 0.95rem;
  }
  
  .faq-answer-content {
    padding: 0 18px 18px;
  }
  
  table { 
    font-size: 0.7rem;
    min-width: 500px;
  }
  
  th, td { 
    padding: 10px 6px; 
    min-height: 44px;
  }
  
  th {
    font-size: 0.65rem;
  }
  
  /* Trust badges mobile */
  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .trust-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .info-card {
    padding: 28px 20px;
  }
  
  .info-card li {
    font-size: 0.9rem;
    padding-left: 26px;
    margin-bottom: 12px;
  }
  
  .scholarship-box {
    padding: 28px 20px;
    margin: 20px auto;
  }
  
  .scholarship-box h3 {
    font-size: 1.4rem;
  }
  
  .scholarship-box .big-number {
    font-size: 2.8rem;
  }
  
  .scholarship-box p {
    font-size: 0.95rem !important;
  }
  
  footer {
    padding: 36px 16px 80px;
  }
  
  footer p {
    font-size: 0.85rem;
  }
  
  /* Show floating CTA on mobile */
  .floating-cta {
    display: block;
  }
}

/* Desktop only */
@media (min-width: 768px) {
  .pricing-table {
    display: block;
  }
  .pricing-cards {
    display: none;
  }
  .pricing-options {
    display: none;
  }
}

/* Tablet - Medium-sized image */
/* TODO: Uncomment when tablet image is optimized */
/*
@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    background-image:
      linear-gradient(135deg, rgba(30, 58, 95, 0.55) 0%, rgba(45, 90, 138, 0.55) 100%),
      url('Head Start Cover-tablet.jpg');
  }
}
*/

/* HERO DESKTOP CROPPING (hide bottom more) */
@media (min-width: 1024px) {
  .hero {
    background-position: center 10%;
  }
}

