
body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  margin: 0;
  padding: 0;
  background-color: #FFF9F0;
  color: #333;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
}

.logo img {
  max-height: 165px;
  width: auto;
  height: auto;
  display: block;
}

/* Tablet view */
@media (max-width: 1024px) {
  .logo img {
    max-height: 100px;
  }
}

/* Smartphone view */
@media (max-width: 768px) {
  .logo img {
    max-height: 60px;
  }
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.nav-menu a {
  margin-left: 1rem;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Mobile Menu - Stack links only on small screens */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-menu a {
    text-align: center;
    width: 100%;
  }
}

.hero {
  background: #38B6FF;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.cta-button {
  background: #FF6B6B;
  color: #fff;
  padding: 0.75rem 1.5rem;
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e05555;
}

.about, .audience, .testimonials, .freebie {
  padding: 2rem;
}

.features li {
  list-style: none;
  margin: 0.5rem 0;
}

.site-footer {
  background: #FFD93D;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.feature-item {
  max-width: 160px;
}

.feature-item img {
  width: 128px;
  height: auto;
  margin-bottom: 0.5rem;
}

.feature-item p {
  margin: 0;
  font-weight: 600;
  color: #333;
}

.contact {
  padding: 3rem 2rem;
  background: #FFF9F0;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact button {
  background: #38B6FF;
  color: white;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.contact button:hover {
  background: #309ed8;
}

.freebie form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.starter-kit-contents {
  padding: 3rem 1.5rem;
  text-align: center;
  background-color: #fff8ef;
}

.starter-kit-contents h2 {
  color: #f8a235;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.starter-kit-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
}

.starter-kit-list li {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  text-align: left;
  padding-left: 1.2rem;
  position: relative;
}

.starter-kit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
}

/* Added universal section padding for breathing space */
section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* New Sections for Phase 2 */
.about-earlylearningbox, 
.audience-earlylearningbox, 
.stay-connected-earlylearningbox {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #ffffff;
}

.coming-soon-earlylearningbox {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #FFF8E1;
}

.about-earlylearningbox h2,
.audience-earlylearningbox h2,
.coming-soon-earlylearningbox h2,
.stay-connected-earlylearningbox h2,
.testimonials h2,
.freebie h2,
.contact h2 {
  color: #f8a235;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.audience-earlylearningbox ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
}

.audience-earlylearningbox li {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  text-align: left;
  padding-left: 1.5rem;
  position: relative;
}

.audience-earlylearningbox li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* Final polish for better layout */
.about-earlylearningbox p,
.audience-earlylearningbox ul,
.coming-soon-earlylearningbox p {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
