* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #fff;
  color: #222;
}

/* HERO */
.about-hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url(b1.jpeg);
    background-size: cover;
  background-position: center;
}
/* DARK COLOR OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(24, 24, 24, 0.88),
    rgba(14, 20, 31, 0.88)
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 20px;
  text-align: center;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
}

.hero-content h2 {
  color: #f4b400;
  font-size: 3rem;
  margin-top: 10px;
}

.hero-content p {
  margin-top: 15px;
  font-size: 1.1rem;
}

/* INTRO */
.about-intro {
  padding: 80px 20px;
  text-align: center;
}

.about-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* CARDS */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 40px;
  background: #fafafa;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform .4s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 80px;
  margin-bottom: 15px;
}

/* HAPPINESS */
.happiness {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 80px 40px;
  align-items: center;
}

.happiness-img img {
  width: 100%;
  border-radius: 20px;
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  background: linear-gradient(120deg, #f4b400, #ffcc00);
  padding: 60px 20px;
  color: #000;
}

.stat h3 {
  font-size: 2.5rem;
}

/* CTA */
.about-cta {
  padding: 80px 20px;
  text-align: center;
  background: #111;
  color: white;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: #f4b400;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all .7s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

.faq-section {
  margin-top: 40px;
}

.faq-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  background-color: #0fb9b1;
  color: #fff;
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #0aa29a;
}

.faq-question span {
  font-weight: bold;
  margin-right: 10px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #f1f5f9;
  padding: 0 20px;
  font-size: 15px;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  padding: 15px 20px;
  max-height: 300px; /* enough height for content */
}
.about-section {
  padding: 90px 20px;
}

.about-section h2 {
  font-size: 2.6rem;
  margin-bottom: 25px;
}

.about-section p {
  max-width: 900px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.mission {
  background: #f9f9f9;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.why-card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
  transition: transform .3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
}
.contact-section {
  padding: 100px 20px;
  background: #605f5f;
  color: #fff;
  text-align: center;
}

.contact-section p {
  margin-bottom: 40px;
}

#contactForm {
  max-width: 600px;
  margin: auto;
}

.form-group {
  margin-bottom: 20px;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 1rem;
}

#contactForm button {
  width: 100%;
  padding: 15px;
  background: #f4b400;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;

  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}


.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  color: #ffb703;
}

/* CATEGORY BUTTON */
.cat-btn {
  background: #f3f3f3;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #111;
  border-radius: 4px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

/* ANIMATION ☰ → X */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
}

.mobile-menu a {
  padding: 14px 20px;
  border-bottom: 1px solid #f1f1f1;
  text-decoration: none;
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  /* center logo on mobile */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-menu.active {
    display: flex;
  }
}

.logo a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
html {
  scroll-behavior: smooth;
}


.site-footer {
  background: linear-gradient(135deg, #050b1e, #0b163a);
  color: #cbd5f5;
  padding: 80px 6% 30px;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 35px;
  height: 3px;
  background: #3b82f6;
  display: block;
  margin-top: 6px;
  border-radius: 2px;
}

.footer-col p,
.footer-col li {
  font-size: 15px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-col a:hover {
  color: #3b82f6;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0f1d4d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-bottom span {
  color: #3b82f6;
}

.footer-links a {
  text-decoration: none;
  border: none;
  color: #cbd5f5;
  font-size: 14px;
}

.footer-links a:hover {
  color: #3b82f6;
}

/* Specifically for Terms button */
.terms-btn {
  text-decoration: none;
  border: none;
  background: #1e3a8a;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
}

/* Kill any inherited underline or border */
.footer-links a::after,
.footer-links a::before {
  content: none;
}


/* MOBILE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}