:root {
  --primary: #0c0788;
  --primary-dark: #120770;
  --primary-light: #1a14a3;
  --cream: #fefad3;
  --peach: #fdd2b9;
  --peach-light: #ffe8d9;
  --dark: #211c1b;
  --gray: #6b6460;
  --soft-shadow: 0 30px 50px -20px rgba(12, 7, 136, 0.25);
  --card-radius: 2.5rem;
}

.hero {
  position: relative;
  min-height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("../../images/ngo-banner-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 7, 136, 0.75) 0%,
    rgba(12, 7, 136, 0.45) 40%,
    rgba(33, 28, 27, 0.7) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(254, 250, 211, 0.08) 0%,
    transparent 50%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 20px;
  color: var(--cream);
}

.hero-title {
  max-width: 880px;
  font-size: clamp(48px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 8px 24px rgba(12, 7, 136, 0.4);
}

.hero-subtitle {
  margin-top: 56px;
  margin-bottom: 36px;
  font-size: clamp(36px, 4.5vw, 48px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--peach);
  letter-spacing: -0.01em;
  text-shadow: 0 4px 12px rgba(33, 28, 27, 0.5);
}

.hero-description {
  max-width: 720px;
  margin-bottom: 48px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--cream);
  opacity: 0.94;
  text-shadow: 0 2px 6px rgba(33, 28, 27, 0.6);
  border-left: 4px solid var(--peach);
  padding-left: 24px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 36px;
  border-radius: 60px;
  border: none;
  background: var(--primary);
  color: var(--cream);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.3s ease,
    color 0.2s ease;
  box-shadow: 0 8px 20px rgba(12, 7, 136, 0.45);
  cursor: pointer;
}

.hero-button:hover {
  transform: translateY(-4px);
  background: var(--primary-dark);
  box-shadow: 0 16px 34px rgba(12, 7, 136, 0.55);
  color: #ffffff;
}

.hero-button:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(12, 7, 136, 0.5);
}

.hero-button:hover .eye-icon {
  border-color: var(--peach);
}

.hero-button:hover {
  background: var(--peach);
}

@media (max-width: 768px) {
  .hero-content {
    padding: 60px 28px;
  }

  .hero-subtitle {
    margin-top: 36px;
    margin-bottom: 28px;
  }

  .hero-description {
    font-size: 18px;
    padding-left: 18px;
    border-left-width: 3px;
  }

  .hero-button {
    padding: 16px 28px;
    font-size: 15px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 50px 20px;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hero-subtitle {
    font-size: clamp(28px, 8vw, 38px);
    margin-top: 28px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-button {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
}

.about-section {
  position: relative;
  padding: 4rem 1.5rem 5rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(253, 210, 185, 0.55) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(12, 7, 136, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 70% 15%, rgba(253, 210, 185, 0.4) 0%, transparent 35%);
  pointer-events: none;
  z-index: 0;
}

.about-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 7, 136, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 7, 136, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.about-card {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  padding: 3.5rem 3rem 2.5rem 3.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 3rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
  animation: fadeInUp 0.7s ease-out;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.founder-content {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  position: relative;
  z-index: 2;
  padding-top: 0.5rem;
}

.founder-content h3 {
  color: var(--primary);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.founder-content h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 70px;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--peach));
  border-radius: 6px;
}

.founder-content h4 {
  color: var(--dark);
  font-size: 1.65rem;
  font-weight: 600;
  margin: 1.6rem 0 1.5rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.founder-content h4::before {
  content: '';
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  flex-shrink: 0;
}

.founder-content p {
  max-width: 620px;
  color: #2d2826;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.3rem;
}

.founder-content p:last-of-type {
  margin-bottom: 0;
}

.founder-content p strong {
  font-weight: 700;
  color: var(--primary-dark);
  background: linear-gradient(to right, var(--peach), transparent 90%);
  padding: 0.1rem 0.25rem;
  border-radius: 4px;
}

.founder-image {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  min-height: 380px;
  z-index: 2;
}

.founder-image img {
  width: 100%;
  max-width: 300px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 25px rgba(12, 7, 136, 0.15));
  -webkit-mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
  position: relative;
  z-index: 3;
  transition: transform 0.35s ease;
}

.founder-image img:hover {
  transform: scale(1.02) translateY(-4px);
}

.founder-image::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.65;
  z-index: 1;
  pointer-events: none;
}

.stats-panel {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  margin-top: 2.8rem;
  padding-top: 2.2rem;
  border-top: 2px dashed rgba(253, 210, 185, 0.9);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-item {
  position: relative;
  padding: 0.5rem 0.5rem;
  transition: transform 0.25s ease;
  border-radius: 1.2rem;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(253, 210, 185, 0.2);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 15%;
  height: 70%;
  width: 1.5px;
  background: linear-gradient(to bottom, transparent, var(--peach), transparent);
  opacity: 0.9;
}

.stat-item h2 {
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 0.3rem;
  transition: color 0.2s;
  font-variant-numeric: tabular-nums;
}

.stat-item h2.blue {
  color: var(--primary-dark);
}

.stat-item p {
  max-width: 240px;
  margin: 0 auto;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #2d2826;
  font-weight: 400;
}

.stat-item p strong {
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.15rem;
  letter-spacing: -0.01em;
}

.stats-panel::before {
  content: 'IMPACT IN NUMBERS';
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.3rem 1.2rem;
  border-radius: 30px;
  border: 1.5px solid var(--peach);
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

.founder-content h3,
.founder-content h4,
.stat-item h2 {
  word-break: break-word;
}

@media (max-width: 1024px) {
  .about-card {
    padding: 3rem 2.5rem 2rem 3rem;
    gap: 0 2rem;
  }
  .founder-content h3 { font-size: 2.4rem; }
  .founder-content h4 { font-size: 1.45rem; }
  .founder-content p { font-size: 1rem; }
  .stat-item h2 { font-size: 2.2rem; }
}

@media (max-width: 900px) {
  .about-section {
    padding: 3rem 1.2rem;
    min-height: auto;
  }
  .about-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 2.5rem 2rem;
    gap: 1.5rem 0;
    text-align: center;
  }
  .founder-content {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .founder-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .founder-content h4 {
    justify-content: center;
  }
  .founder-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .founder-image {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    min-height: auto;
    margin-top: 0.5rem;
  }
  .founder-image img { max-width: 260px; }
  .founder-image::after {
    width: 200px;
    height: 200px;
    bottom: 10px;
  }
  .stats-panel {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-top: 1.5rem;
    padding-top: 2rem;
  }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item h2 { font-size: 2.6rem; }
  .stat-item p { max-width: 320px; }
}

@media (max-width: 600px) {
  .about-section { padding: 2rem 1rem 3rem; }
  .about-card {
    padding: 2rem 1.5rem;
    border-radius: 2rem;
  }
  .founder-content h3 { font-size: 2rem; }
  .founder-content h4 {
    font-size: 1.25rem;
    margin: 1rem 0 1.2rem;
  }
  .founder-content p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .founder-image img { max-width: 220px; }
  .founder-image::after {
    width: 170px;
    height: 170px;
  }
  .stats-panel {
    margin-top: 1rem;
    padding-top: 1.8rem;
    gap: 1.5rem;
  }
  .stat-item h2 { font-size: 2.2rem; }
  .stat-item p { font-size: 0.88rem; }
  .stats-panel::before {
    font-size: 0.6rem;
    padding: 0.25rem 1rem;
  }
}

@media (max-width: 400px) {
  .founder-content h3 { font-size: 1.75rem; }
  .founder-content h4 { font-size: 1.15rem; }
  .stat-item h2 { font-size: 2rem; }
}

.impact-section {
  width: 100%;
  position: relative;
}

.impact-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 660px;
  width: 100%;
  overflow: hidden;
}

.impact-row:nth-child(1) {
  background:
    radial-gradient(circle at 15% 20%, rgba(253, 210, 185, 0.55) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(12, 7, 136, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 70% 15%, rgba(253, 210, 185, 0.4) 0%, transparent 35%);
}

.impact-row:nth-child(1)::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 20%, rgba(253, 210, 185, 0.55) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(12, 7, 136, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 70% 15%, rgba(253, 210, 185, 0.4) 0%, transparent 35%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.impact-row:nth-child(2) {
  background:
    radial-gradient(circle at 15% 20%, rgba(253, 210, 185, 0.55) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(12, 7, 136, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 70% 15%, rgba(253, 210, 185, 0.4) 0%, transparent 35%);
}

.impact-row:nth-child(2)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 20%, rgba(253, 210, 185, 0.55) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(12, 7, 136, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 70% 15%, rgba(253, 210, 185, 0.4) 0%, transparent 35%);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
  z-index: 0;
}

.impact-number {
  position: absolute;
  font-size: 26rem;
  font-weight: 900;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.06em;
  font-family: system-ui, 'Segoe UI', sans-serif;
  opacity: 0.07;
}

.impact-row:nth-child(1) .impact-number {
  top: -3rem;
  left: -1rem;
  color: var(--primary);
}

.impact-row:nth-child(2) .impact-number {
  bottom: -3rem;
  right: -1rem;
  color: var(--primary);
}

.impact-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  width: 100%;
  padding: 80px 60px;
}

.impact-row:nth-child(1) .impact-content {
  justify-self: start;
  padding-left: 80px;
}

.impact-row:nth-child(2) .impact-content {
  justify-self: end;
  padding-right: 80px;
}

.impact-content h2 {
  margin: 0 0 24px;
  color: var(--primary);
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.025em;
  position: relative;
}

.impact-content h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--peach) 100%);
  border-radius: 5px;
  margin-top: 16px;
}

.impact-content h3 {
  margin: 0 0 20px;
  color: var(--primary-dark);
  font-size: 23px;
  line-height: 1.4;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.01em;
  padding: 8px 0 8px 20px;
  border-left: 5px solid var(--primary);
  background: linear-gradient(90deg, rgba(253, 210, 185, 0.6) 0%, transparent 90%);
  border-radius: 0 10px 10px 0;
}

.impact-date {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--cream);
  background: var(--primary);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px -6px rgba(12, 7, 136, 0.4);
}

.impact-content p {
  margin: 0 0 18px;
  color: #1f1b1a;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}

.impact-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 50px;
}

.impact-row:nth-child(1) .impact-image {
  justify-content: flex-start;
  padding-left: 20px;
}

.impact-row:nth-child(2) .impact-image {
  justify-content: flex-end;
  padding-right: 20px;
}

.impact-image img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 40px 70px -25px rgba(12, 7, 136, 0.45);
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.impact-image img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 55px 90px -30px rgba(12, 7, 136, 0.55);
}

.impact-image::before {
  content: '';
  position: absolute;
  width: 60%;
  max-width: 520px;
  height: 70%;
  border-radius: 24px;
  z-index: 1;
  pointer-events: none;
}

.impact-row:nth-child(1) .impact-image::before {
  border: 4px solid var(--primary);
  top: 10%;
  left: 5%;
  opacity: 0.35;
}

.impact-row:nth-child(2) .impact-image::before {
  border: 4px solid var(--primary);
  bottom: 10%;
  right: 5%;
  opacity: 0.35;
}

.impact-image::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  z-index: 0;
  background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.35;
  pointer-events: none;
}

.impact-row:nth-child(1) .impact-image::after {
  bottom: 40px;
  right: 40px;
}

.impact-row:nth-child(2) .impact-image::after {
  top: 40px;
  left: 40px;
}

.impact-row:first-child .impact-image img {
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.impact-row:nth-child(2) .impact-image img {
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
}

@media (max-width: 1024px) {

  .impact-row {
    min-height: 540px;
  }

  .impact-content {
    padding: 60px 40px;
  }

  .impact-row:nth-child(1) .impact-content {
    padding-left: 50px;
  }

  .impact-row:nth-child(2) .impact-content {
    padding-right: 50px;
  }

  .impact-content h2 {
    font-size: 30px;
  }

  .impact-content h3 {
    font-size: 20px;
  }

  .impact-content p {
    font-size: 15px;
  }

  .impact-image {
    min-height: 540px;
    padding: 40px 30px;
  }

  .impact-number {
    font-size: 18rem;
  }
}

@media (max-width: 700px) {

  .impact-row,
  .impact-row-reverse {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .impact-row:nth-child(1)::before,
  .impact-row:nth-child(2)::before {
    display: none;
  }

  .impact-row:nth-child(1) {
    background: var(--cream);
  }

  .impact-row:nth-child(2) {
    background: linear-gradient(180deg, var(--peach) 0%, #fde0cc 100%);
  }

  .impact-row .impact-image {
    order: 1;
    min-height: auto;
    padding: 50px 30px 10px;
    justify-content: center !important;
  }

  .impact-row .impact-content {
    order: 2;
  }

  .impact-content,
  .impact-row:nth-child(1) .impact-content,
  .impact-row:nth-child(2) .impact-content {
    padding: 40px 28px 60px;
    justify-self: stretch;
    max-width: 100%;
  }

  .impact-content h2 {
    font-size: 27px;
    margin-bottom: 18px;
  }

  .impact-content h2::after {
    width: 60px;
    height: 4px;
    margin-top: 12px;
  }

  .impact-content h3 {
    font-size: 18px;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left-width: 4px;
  }

  .impact-date {
    font-size: 12px;
    margin-bottom: 20px;
    padding: 6px 16px;
  }

  .impact-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .impact-image img {
    max-width: 100%;
    border-radius: 18px;
  }

  .impact-row:first-child .impact-image img,
  .impact-row:nth-child(2) .impact-image img {
    aspect-ratio: auto;
    max-height: 340px;
  }

  .impact-image::before {
    width: 70%;
    max-width: 280px;
    height: 60%;
    border-width: 3px;
  }

  .impact-row:nth-child(1) .impact-image::before {
    top: 8%;
    left: 8%;
  }

  .impact-row:nth-child(2) .impact-image::before {
    bottom: 8%;
    right: 8%;
  }

  .impact-image::after {
    width: 80px;
    height: 80px;
    background-size: 10px 10px;
  }

  .impact-row:nth-child(1) .impact-image::after {
    bottom: 20px;
    right: 20px;
  }

  .impact-row:nth-child(2) .impact-image::after {
    top: 20px;
    left: 20px;
  }

  .impact-number {
    font-size: 12rem;
    opacity: 0.05;
  }

  .impact-row:nth-child(1) .impact-number {
    top: -1rem;
    left: -0.5rem;
  }

  .impact-row:nth-child(2) .impact-number {
    bottom: -1rem;
    right: -0.5rem;
  }
}

@media (max-width: 420px) {

  .impact-content,
  .impact-row:nth-child(1) .impact-content,
  .impact-row:nth-child(2) .impact-content {
    padding: 32px 20px 48px;
  }

  .impact-content h2 {
    font-size: 23px;
  }

  .impact-content h3 {
    font-size: 16px;
  }

  .impact-image {
    padding: 40px 20px 8px;
  }

  .impact-image img {
    border-radius: 14px;
  }

  .impact-number {
    font-size: 9rem;
  }
}

.help-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 0 64px;
}

.help-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  padding: 32px 36px;
}

.intro-copy {
  padding-top: 6px;
}

.intro-copy h1 {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.date {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.6);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 40px;
  backdrop-filter: blur(2px);
}

.intro-copy p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
  font-weight: 400;
}

.intro-copy p:last-of-type {
  margin-bottom: 0;
}

.intro-image {
  width: 100%;
  aspect-ratio: 426 / 486;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--card-radius) - 0.5rem);
  box-shadow: 0 20px 30px -10px rgba(12, 7, 136, 0.2);
  border: 3px solid white;
}

.slider-wrapper {
  position: relative;
  margin-top: 20px;
}

.slider-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 24px;
  padding: 16px 8px 32px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scrollbar-color: var(--primary) var(--peach);
  position: relative;
}

.slider-container::-webkit-scrollbar {
  display: none;
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
  z-index: 30;
}

.nav-btn {
  pointer-events: auto;
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px -6px rgba(12, 7, 136, 0.6);
  transition: all 0.2s ease;
  font-size: 1.6rem;
  line-height: 1;
  user-select: none;
  border: 3px solid white;
  z-index: 31;
  backdrop-filter: blur(6px);
  background: rgba(12, 7, 136, 0.8);
  padding: 0;
  text-align: center;
  padding-bottom: 4px;
}

.nav-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.08);
  box-shadow: 0 14px 26px -6px rgba(12, 7, 136, 0.8);
}

.nav-btn:active {
  transform: scale(0.96);
}

.help-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: white;
  border-radius: var(--card-radius);
  padding: 18px 18px 24px;
  box-shadow: 0 20px 35px -12px rgba(12, 7, 136, 0.18);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(253, 210, 185, 0.6);
}

.help-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 45px -12px rgba(12, 7, 136, 0.3);
  border-color: var(--primary);
}

.help-card img {
  display: block;
  width: 100%;
  aspect-ratio: 271 / 204;
  object-fit: cover;
  border-radius: 1.8rem;
  margin-bottom: 18px;
  background: var(--peach);
  border: 2px solid white;
  box-shadow: 0 8px 18px rgba(12, 7, 136, 0.1);
}

.help-card h3 {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 0 4px;
}

.help-card p {
  margin: 0 auto;
  max-width: 96%;
  font-size: 0.85rem;
  line-height: 1.65;
  color: #2f2a28;
  font-weight: 400;
  padding: 0 4px;
}

@media (max-width: 900px) {
  .intro-copy h1 {
    text-align: left;
  }

  .date {
    padding: 5px 0px;
  }
}

@media (max-width: 600px) {
  .help-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px;
  }

  .help-section {
    width: min(100% - 20px, 1200px);
    padding-top: 16px;
  }

  .help-card {
    flex: 0 0 270px;
    padding: 14px 14px 20px;
  }

  .help-card h3 {
    font-size: 1rem;
  }

  .nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    border-width: 2px;
  }

  .slider-nav {
    padding: 0 6px;
  }

  .help-intro {
    border-radius: 2rem;
    padding: 22px 18px;
  }

  .intro-copy p {
    font-size: 14px;
  }

  .date {
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .help-card {
    flex: 0 0 250px;
  }

  .nav-btn {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
}

img {
  max-width: 100%;
  display: block;
}

.slider-wrapper::before,
.slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 30px;
  width: 30px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.6;
}

.slider-wrapper::before {
  left: 0;
}

.slider-wrapper::after {
  right: 0;
}

.slider-nav {
  z-index: 30;
}

.nav-btn {
  z-index: 31;
}

.nav-btn {
  backdrop-filter: blur(6px);
  background: rgba(12, 7, 136, 0.8);
}

.nav-btn:hover {
  background: rgba(18, 7, 112, 0.95);
}

.presence-section {
  width: 100%;
  background: #ffffff;
  padding: 4rem 2rem 4.5rem;
}

.presence-container {
  max-width: 1200px;
  margin: 0 auto;
}

.presence-section h2 {
  margin: 0 0 3.5rem;
  text-align: center;
  font-family: inherit;
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--primary);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.presence-section h2::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.35rem;
  background: var(--peach);
  border-radius: 1rem;
  opacity: 0.8;
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 2rem;
  margin-top: 1rem;
}

.state-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  padding: 2rem 0.75rem 1.5rem;
  border-radius: var(--card-radius);
  box-shadow: 0 6px 18px rgba(12, 7, 136, 0.06), 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  border: 1px solid rgba(12, 7, 136, 0.06);
}

.state-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--soft-shadow);
  border-color: rgba(12, 7, 136, 0.12);
  background: #fffcf6;
}

.state-map {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.2s;
}

.state-card:hover .state-map {
  transform: scale(1.02);
}

.state-map img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(12%) sepia(80%) saturate(5000%) hue-rotate(240deg) brightness(0.9) contrast(1.1);
  opacity: 0.85;
  transition: opacity 0.2s, filter 0.2s;
}

.state-card:hover .state-map img {
  opacity: 0.95;
  filter: brightness(0) saturate(100%) invert(10%) sepia(90%) saturate(6000%) hue-rotate(240deg) brightness(0.8) contrast(1.2);
}

.state-card h3 {
  margin: 0;
  font-family: inherit;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.state-card:hover h3 {
  color: var(--primary-dark);
}

.state-card:focus-within {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  .presence-section {
    padding: 3.5rem 1.5rem 4rem;
  }

  .presence-section h2 {
    margin-bottom: 3rem;
    white-space: normal;
  }

  .states-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.25rem;
  }

  .state-card {
    padding: 1.5rem 0.5rem 1.25rem;
    border-radius: 2rem;
  }

  .state-map {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
  }

  .state-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 800px) {
  .presence-section h2 {
    font-size: 2.6rem;
  }

  .states-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .state-card {
    padding: 1.75rem 1rem 1.5rem;
    border-radius: 2rem;
  }

  .state-map {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 520px) {
  .presence-section {
    padding: 2.5rem 1rem 3rem;
  }

  .presence-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }

  .presence-section h2::after {
    width: 4rem;
    height: 0.3rem;
    bottom: -0.6rem;
  }

  .states-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.75rem;
  }

  .state-card {
    padding: 1.25rem 0.25rem 1rem;
    border-radius: 1.75rem;
  }

  .state-map {
    width: 80px;
    height: 80px;
    margin-bottom: 0.75rem;
  }

  .state-card h3 {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .states-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .state-card {
    padding: 1.5rem 1rem 1.25rem;
    max-width: 240px;
    margin: 0 auto;
    width: 100%;
  }

  .presence-section h2 {
    font-size: 1.9rem;
  }
}

.healthcare-section {
  width: 100%;
  background: linear-gradient(145deg, #ffffff 0%, #fefad3 100%);
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.healthcare-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 30%, rgba(253, 210, 185, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 90% 70%, rgba(12, 7, 136, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.healthcare-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.healthcare-content {
  padding: 0;
}

.healthcare-title {
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin: 0 0 0.8rem 0;
  position: relative;
  padding-bottom: 0.7rem;
}

.healthcare-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--peach));
  border-radius: 4px;
}

.healthcare-subhead {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  background: rgba(253, 210, 185, 0.4);
  padding: 0.4rem 0.9rem;
  border-radius: 60px;
  width: fit-content;
  border-left: 3px solid var(--primary);
}

.healthcare-subhead i {
  font-size: 1.05rem;
  color: var(--primary);
}

.doctor-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  padding: 0.8rem 1rem;
  border-radius: 1.1rem;
  box-shadow: 0 8px 22px -10px rgba(12, 7, 136, 0.18);
  border: 1px solid rgba(253, 210, 185, 0.6);
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doctor-profile:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(12, 7, 136, 0.26);
}

.doctor-photo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--peach);
  box-shadow: 0 6px 16px -6px rgba(12, 7, 136, 0.22);
  background: var(--cream);
  transition: transform 0.3s ease;
}

.doctor-profile:hover .doctor-photo {
  transform: scale(1.05);
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.doctor-info h3 {
  margin: 0 0 0.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.doctor-specialty {
  margin: 0 0 0.1rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.doctor-qualification {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.02em;
}

.healthcare-text {
  font-size: 1rem;
  line-height: 1.65;
  color: #2d2826;
  margin-bottom: 0.9rem;
}

.healthcare-text strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.healthcare-features {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.healthcare-features li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1f1b1a;
}

.healthcare-features li i {
  color: var(--primary);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.healthcare-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 48px;
}

.healthcare-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 8px 18px -6px rgba(12, 7, 136, 0.4);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
  border: 2px solid var(--primary);
  cursor: pointer;
  white-space: nowrap;
}

.healthcare-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -8px rgba(12, 7, 136, 0.55);
}

.healthcare-btn .btn-arrow {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.healthcare-btn:hover .btn-arrow {
  transform: translateX(3px);
}

.healthcare-btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.healthcare-btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 10px 20px -8px rgba(12, 7, 136, 0.4);
}

.healthcare-btn-outline i {
  font-size: 0.78rem;
}

.healthcare-image {
  position: relative;
  border-radius: calc(var(--card-radius) - 0.6rem);
  overflow: hidden;
  box-shadow: 0 20px 40px -18px rgba(12, 7, 136, 0.3);
  border: 4px solid #ffffff;
  aspect-ratio: 4 / 3.2;
  background: var(--peach-light);
}

.healthcare-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.healthcare-image:hover img {
  transform: scale(1.04);
}

.healthcare-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 7, 136, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.clinic-tag {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.45rem 1.1rem;
  border-radius: 60px;
  box-shadow: 0 6px 16px -6px rgba(12, 7, 136, 0.28);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  border: 1px solid rgba(253, 210, 185, 0.8);
}

.clinic-tag i {
  color: var(--primary);
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .healthcare-container {
    gap: 2rem;
  }
  .healthcare-features {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .healthcare-actions {
    flex-direction: column;
  }
  .healthcare-btn {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .healthcare-section {
    padding: 2.5rem 1.25rem;
  }
  .healthcare-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .healthcare-image {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .healthcare-content {
    text-align: center;
  }
  .healthcare-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .healthcare-subhead {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .healthcare-features {
    grid-template-columns: 1fr 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .doctor-profile {
    flex-direction: row;
    text-align: left;
    padding: 0.8rem 1rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .healthcare-actions {
    flex-direction: row;
    justify-content: center;
  }
  .healthcare-btn {
    width: auto;
  }
}

@media (max-width: 600px) {
  .healthcare-section {
    padding: 2rem 1rem;
  }
  .healthcare-title {
    font-size: 1.5rem;
  }
  .healthcare-subhead {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .doctor-photo {
    width: 64px;
    height: 64px;
  }
  .doctor-info h3 {
    font-size: 0.98rem;
  }
  .doctor-specialty {
    font-size: 0.78rem;
  }
  .doctor-qualification {
    font-size: 0.7rem;
  }
  .healthcare-features {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .healthcare-text {
    font-size: 0.86rem;
  }
  .healthcare-actions {
    flex-direction: column;
  }
  .healthcare-btn {
    width: 100%;
    max-width: 300px;
    padding: 0.7rem 1.3rem;
    font-size: 0.78rem;
    margin: 0 auto;
  }
  .healthcare-image {
    border-width: 3px;
  }
  .clinic-tag {
    font-size: 0.68rem;
    padding: 0.4rem 0.9rem;
    bottom: 0.75rem;
  }
}

@media (max-width: 400px) {
  .healthcare-title {
    font-size: 1.3rem;
  }
  .healthcare-subhead {
    font-size: 0.8rem;
  }
  .healthcare-features li {
    font-size: 0.78rem;
  }
  .doctor-photo {
    width: 58px;
    height: 58px;
  }
}