/* ================= GLOBAL ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f7f7f7;
  color: #24352f;
  line-height: 1.6;
}

a {
      text-decoration: none !important;
}

.btnn{
        margin-top: 96px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ================= BUTTON ================= */

.btn-primary {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: none;
  padding: 5px 5px 5px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  color: #24352f;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  color: #24352f;
}

.btn-primary-gold {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #E2BB53 0%, #FCE383 50%, #DDB64E 100%);
  border: none;
  padding: 5px 5px 5px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  color: #24352f;
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  color: #24352f;
}

.btn-primary .gold {
  background: linear-gradient(90deg, #E2BB53 0%, #FCE383 50%, #DDB64E 100%);
  height: 42px;
  width: 42px;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 21px;
}

.btn-primary-gold .white {
  background: #ffffff;
  height: 42px;
  width: 42px;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 21px;
}

.li-count {
  background: #fff;
  border-radius: 21px;
  padding: 5px 13px 5px 12px;
}

/* ================= HERO ================= */

.hero {
  height: 800px;
  border-radius: 24px;
  margin: 30px;
  background: url("../images/hero.png") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.25) 60%);
}

.hero-content {
  position: relative;
  max-width: 800px;
  padding: 140px 80px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* ================= PAGE HERO (inner pages) ================= */

.page-hero {
  height: 340px;
  border-radius: 24px;
  margin: 30px;
  background: url("../images/hero.png") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(53, 82, 68, 0.88) 0%, rgba(53, 82, 68, 0.5) 60%);
}

.page-hero-content {
  position: relative;
  padding: 0 80px;
}

.page-hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.page-hero-content p {
  font-size: 16px;
  opacity: 0.85;
  max-width: 560px;
}

/* ================= NAVBAR ================= */

.navbar {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.15);
  z-index: 10;
}

.logo {
  font-weight: 700;
}

.logo img {
  width: 200px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
}

.nav-menu li {
  cursor: pointer;
  padding: 1px 15px 2px 15px;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  background: rgb(255 255 255 / 0%);
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.nav-menu li.active {
  background: #fff;
}

.nav-menu li.active a {
  color: #000;
}

/* Sticky navbar for inner pages */
.navbar-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #2f4a40;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  padding: 14px 60px;
  transform: none;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar-sticky .nav-menu li a {
  color: rgba(255,255,255,0.85);
}

.navbar-sticky .nav-menu li.active {
  background: rgba(255,255,255,0.15);
}

.navbar-sticky .nav-menu li.active a {
  color: #fff;
}

/* ================= SUPPORT ================= */

.support {
  background: linear-gradient(135deg, #dfe7e3, #f6f5ef);
  padding: 80px 0;
  margin: 30px;
  border-radius: 24px;
}

.support img {
  width: 100%;
  border-radius: 18px;
}

.support h2 {
  font-size: 40px;
  margin-bottom: 15px;
  color: #355244;
  font-family: math;
  font-weight: 700;
}

.features {
  margin-top: 25px;
  list-style: none;
}

.features li {
  margin-bottom: 10px;
}

/* ================= GOAL / STATS ================= */

.goal {
  margin: 30px;
  border-radius: 24px;
  padding: 90px 60px;
  color: white;
  background: url("../images/mission.png") center/cover no-repeat;
  position: relative;
}

.goal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 24px;
}

.goal-content {
  position: relative;
  max-width: 700px;
}

.goal-content h2 {
  font-family: emoji;
  font-size: 55px;
}

.stats {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.stat {
  display: flex;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  padding: 22px 90px 22px 26px;
  flex-direction: column;
  justify-content: space-between;
}

.stat h2 {
  color: #EED869;
}

.stat.highlight {
  background: url("../images/stat-highlight.png") center/cover no-repeat;
  color: #ffffff;
}

/* ================= HOW ================= */

.how {
  margin: 80px auto;
  padding: 60px 0px;
  text-align: center;
  background: linear-gradient(90deg, #355244 0%, #35524430 50%);
}

.how h2 {
  color: #355244;
}

.icon-check {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
}

.icon-check img {
  width: 40px;
}

.steps {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 16px;
  border-radius: 12px;
  background: #ffffff;
  font-weight: 500;
}

/* ================= BENEFITS ================= */

.benefits {
  margin: 30px;
  padding: 60px 40px;
  border-radius: 24px;
  background: url("../images/benefits.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 24px;
}

.circle {
  position: relative;
  z-index: 1;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  color: white;
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  margin-left: -55px;
  flex-shrink: 0;
}

.circle:first-child {
  margin-left: 0;
}

.circle.middle {
  width: 290px;
  height: 290px;
  border: 2.5px solid rgba(255, 255, 255, 0.9);
  z-index: 2;
}

.circle img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.circle h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.circle p {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.9;
  margin: 0;
}

/* ================= MARQUEE / TICKER ================= */

.marquee-section {
  position: relative;
  background: linear-gradient(135deg, #dfe7e3, #f6f5ef);
  margin: 30px;
  border-radius: 24px;
  padding: 60px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  cursor: default;
}

.marquee-hover-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 280px;
  height: 140px;
  border-radius: 80px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.marquee-hover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 80px;
}

.marquee-section:hover .marquee-hover-img {
  opacity: 1;
}

.marquee-track {
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  animation: marquee-scroll 18s linear infinite;
}

.marquee-section:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

.marquee-word {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  white-space: nowrap;
  font-family: "Segoe UI", Arial, sans-serif;
  transition: color 0.35s ease;
}

.marquee-word:hover {
  color: #24352f;
  cursor: default;
}

.marquee-word.dark {
  color: #24352f;
}

.marquee-dark-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  clip-path: inset(calc(50% - 70px) calc(50% - 140px) calc(50% - 70px) calc(50% - 140px) round 80px);
  opacity: 0;
  transition: opacity 0.35s ease;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.marquee-section:hover .marquee-dark-overlay {
  opacity: 1;
}

.marquee-dark-overlay .marquee-content {
  align-items: center;
}

.marquee-check {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
}

/* ================= SERVICES ================= */

.services {
  text-align: center;
  padding: 80px 0;
  text-align: -webkit-center;
}

.services h2 {
  color: #355244;
  margin-bottom: 60px;
}

.service-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  height: 330px;
  width: 260px;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  align-content: end;
}

.service-card-1 {
  background: url("../images/service1.png") center/cover no-repeat;
  margin-top: -35px;
}

.service-card-2 {
  background: url("../images/service2.png") center/cover no-repeat;
}

.service-card-3 {
  background: url("../images/service3.png") center/cover no-repeat;
  margin-top: 35px;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3 {
  padding: 18px;
  font-size: 16px;
  color: #ffff;
}

.service-card p {
  font-size: 12px;
  color: #ffff;
  padding: 0 18px 12px;
}

/* ================= FOOTER ================= */

.footer {
  background: #2f4a40;
  color: white;
  margin: 30px;
  border-radius: 24px;
  padding: 60px 60px 30px 60px;
}

.footer .phone {
  font-size: 30px;
  color: #EED869;
  margin: 0;
}

.footer .newsletter p {
  font-size: 25px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 30px;
  border: none;
  margin-top: 10px;
}

.footer .links p {
  margin-bottom: 7px;
}

.footer .links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  transition: color 0.2s;
}

.footer .links a:hover {
  color: #EED869;
}

.footer .links h5 {
  color: #EED869;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: #a9a9a9;
  font-size: 13px;
  margin: 0;
}

/* ================= SECTION UTILITIES ================= */

.section-light {
  background: linear-gradient(135deg, #dfe7e3, #f6f5ef);
  margin: 30px;
  border-radius: 24px;
  padding: 70px 60px;
}

.section-white {
  margin: 30px;
  border-radius: 24px;
  padding: 70px 60px;
  background: #fff;
}

.section-dark {
  background: #2f4a40;
  margin: 30px;
  border-radius: 24px;
  padding: 70px 60px;
  color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .icon-check {
  justify-content: center;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: #355244;
}

.section-title p {
  color: #6b7280;
  margin-top: 10px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= CARDS (BLOG, PRACTITIONER, PRODUCT) ================= */

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.nutribe-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nutribe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.nutribe-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.nutribe-card-body {
  padding: 20px;
}

.nutribe-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.4;
}

.nutribe-card-body p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.nutribe-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #dfe7e3, #f6f5ef);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 40px;
}

/* Practitioner cards in directory */
.practitioner-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 3px solid #355244;
}

.practitioner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.practitioner-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.practitioner-avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #355244, #4a7063);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

.specialism-badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 10px;
  background: rgba(53,82,68,0.08);
  color: #355244;
  border-radius: 20px;
  border: 1px solid rgba(53,82,68,0.2);
  margin: 2px;
}

/* Pricing cards */
.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.pricing-card.featured {
  background: #2f4a40;
  color: white;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 800;
  color: #355244;
  line-height: 1;
}

.pricing-card.featured .price {
  color: #EED869;
}

.pricing-card .price span {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-card .feature-list {
  list-style: none;
  text-align: left;
  margin: 24px 0;
}

.pricing-card .feature-list li {
  padding: 7px 0;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-card.featured .feature-list li {
  border-bottom-color: rgba(255,255,255,0.1);
}

.feature-check {
  color: #355244;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card.featured .feature-check {
  color: #EED869;
}

/* Shop / product cards */
.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #dfe7e3, #f6f5ef);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #9ca3af;
}

.product-card-body {
  padding: 18px;
}

.product-type-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 10px;
  background: rgba(53,82,68,0.08);
  color: #355244;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* ================= HOW IT WORKS PAGES ================= */

.steps-vertical {
  max-width: 800px;
  margin: 40px auto;
}

.step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #355244, #4a7063);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

.step-item-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #355244;
  margin-bottom: 6px;
}

.step-item-body p {
  color: #6b7280;
  font-size: 15px;
}

/* ================= ABOUT PAGE ================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.team-avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #355244, #4a7063);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 12px;
}

/* ================= BLOG ================= */

.blog-hero-card {
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
}

.blog-hero-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.blog-hero-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  background: rgba(53,82,68,0.1);
  color: #355244;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ================= LEGAL PAGES ================= */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.legal-content h1 {
  font-size: 36px;
  color: #355244;
  margin-bottom: 8px;
}

.legal-content h2 {
  font-size: 20px;
  color: #355244;
  margin: 30px 0 12px;
}

.legal-content p, .legal-content li {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content ul, .legal-content ol {
  padding-left: 20px;
}

/* ================= SEARCH / FILTER BAR ================= */

.filter-bar {
  background: white;
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 32px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.filter-bar input,
.filter-bar select {
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 14px;
  color: #374151;
  background: #f9fafb;
  outline: none;
  transition: border-color 0.2s;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: #355244;
}

.btn-filter {
  background: #355244;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-filter:hover {
  opacity: 0.85;
}

.btn-clear {
  background: transparent;
  color: #6b7280;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}

/* ================= STAR RATING ================= */

.stars {
  display: inline-flex;
  gap: 2px;
  color: #EED869;
  font-size: 15px;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 1024px) {
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-wrap: wrap;
  }

  .service-grid {
    flex-direction: column;
    align-items: center;
  }

  .benefits {
    flex-direction: column;
    align-items: center;
  }

  .circle {
    margin-left: 0 !important;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 120px 30px;
  }

  .card-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .blog-hero-card {
    grid-template-columns: 1fr;
  }

  .page-hero-content {
    padding: 0 30px;
  }

  .section-light,
  .section-white,
  .section-dark {
    margin: 15px;
    padding: 50px 30px;
  }

  .navbar-sticky {
    padding: 14px 20px;
  }
}

@media(max-width: 640px) {
  .card-grid-3 {
    grid-template-columns: 1fr;
  }

  .card-grid-4 {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-menu {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }

  .page-hero-content h1 {
    font-size: 28px;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer {
    margin: 15px;
    padding: 40px 24px 20px;
  }
}
