
:root {
  --navy: #1E2B4C;
  --orange: #F04E30;
  --grey: #f9f9f9;
  --white: #ffffff;
  --text: #333;
}
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--grey);
  color: var(--text);
}
header {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav a {
  color: var(--white);
  text-decoration: none;
  margin: 0 1rem;
}
.cta-btn {
  background: var(--orange);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
}
main {
  max-width: 960px;
  margin: auto;
  padding: 2rem;
}
.hero {
  position: relative;
  background: url('kids-running.png') center 20% /cover no-repeat;
  height: 500px; /* or your preferred height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* dark overlay for contrast */
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
  margin: 0;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.program-card {
  background: var(--white);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
}
.testimonial-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.testimonial {
  background: var(--white);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  min-width: 280px;
}
footer {
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 1rem;
  margin-top: 2rem;
}
.contact-section {
  margin-top: 2rem;
}
