body.what-is-climate-change, body.what-is-climate-change * {
  font-size: 1.7em !important;
}
body.what-is-climate-change h1 {
  font-size: 5em !important;
}
body.what-is-climate-change h2 {
  font-size: 3em !important;
}
body.what-is-climate-change p, body.what-is-climate-change li {
  font-size: 2em !important;
}
/* Main styles for Climate Change Awareness Website for Kids */
body {
  margin: 0;
  font-family: 'Comic Neue', 'Poppins', Arial, sans-serif;
  background: #d0ecec;
  color: #222;
}

nav.navbar {
  width: 100%;
  background: linear-gradient(90deg, #11999e 0%, #189ca0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0;
  min-height: 54px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
nav.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
nav.navbar li {
  display: inline;
}
nav.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0.7rem 1.3rem;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}
nav.navbar a:hover, nav.navbar a.active {
  background: #fff;
  color: #11999e;
}

html, body {
  padding-top: 0;
  margin: 0;
  overflow: hidden !important;
}
/* Hero section split layout */
.hero {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 100vh;
  background: none;
  gap: 2.5rem;
  padding: 0;
  width: 100vw;
  box-sizing: border-box;
  margin: 0;
}
.hero-content {
  flex: 1 1 0;
  color: #222;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  background: none;
  border-radius: 0;
  padding: 3rem 2.5rem;
  /* box-shadow removed */
  max-width: 1100px;
  min-height: 650px;
  margin: 7rem 0 0 0;
}
.hero h1 {
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 2.2rem;
  font-weight: 9100 !important;
  color: #11999e;
  font-family: 'Comic Neue', 'Comic Neue Bold', 'Poppins', Arial, sans-serif;
}
.hero p {
  font-size: 1.7rem;
  margin-bottom: 2.5rem;
  color: #222;
}
.hero-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  min-width: 0;
}
.hero-image img {
  max-width: 550px;
  min-width: 220px;
  width: 100%;
  height: 700px;
  aspect-ratio: 2/3;
  object-fit: contain;
  border-radius: 22px;
  /* box-shadow removed */
  margin: 0 auto 0 auto;
  display: block;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    min-height: unset;
    gap: 1.2rem;
    width: 100vw;
    padding: 1.2rem 0 1.2rem 0;
  }
  .hero-content, .hero-image {
    max-width: 100%;
    padding: 0.7rem;
  }
  .hero-image img {
    max-width: 90vw;
  }
}
.cta-btn {
  background: #4ecdc4;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 1.1rem 2.2rem;
  font-size: 1.45rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.cta-btn:hover {
  background: #11999e;
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.1rem; }
  .hero p { font-size: 0.85rem; }
  .cta-btn { font-size: 0.85rem; padding: 0.5rem 0.7rem; }
}
