/* REMOVE DEFAULT SPACE */
:root {
  --brand-yellow: #FFDF22;
  --top-bar-height: 36px;
  --navbar-height: 82px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2d2d2d;
  background: #fbfbfb;
  scroll-behavior: smooth;
}

/* ALSO ENSURE HTML HAS NO GAP */
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* ALWAYS LIGHT NAVBAR */
.premium-navbar {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  padding: 0;
  min-height: var(--navbar-height);
}

/* LOGO */
.navbar-brand {
  color: var(--brand-yellow) !important;
  font-weight: bold;
  padding: 0;
  margin: 0;
}

/* LINKS */
.navbar .nav-link {
  color: #333 !important;
  font-weight: 500;
  transition: 0.3s;
}

/* HOVER */
.navbar .nav-link:hover {
  color: var(--brand-yellow) !important;
}

/* ACTIVE */
.nav-link.active {
  color: var(--brand-yellow) !important;
}

/* BUTTON */
.btn-gold {
  background: var(--brand-yellow);
  color: #000;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
}

.btn-gold:hover {
  background: var(--brand-yellow);
}

/* HERO */
.hero, #home {
  position: relative;
  min-height: calc(100vh - 90px);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

#home .carousel-caption {
  text-shadow: 0 8px 18px rgba(0,0,0,0.45);
}

section {
  padding: 70px 0;
}

/* SECTION DIVIDER */
section + section {
  border-top: 1px solid #eee;
}

/* NAVBAR CONTAINER */
.premium-navbar .container-fluid {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--navbar-height);
}

/* LOGO CONTAINER */
.logo-container {
  display: inline-flex;
  align-items: center;
  transition: 0.3s ease;
  flex-shrink: 0;
}

/* LOGO IMAGE */
.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  filter: contrast(1.08) saturate(1.05);
}

/* BRAND TEXT */
.brand-text {
  font-weight: bold;
  color: var(--brand-yellow);
  transition: 0.3s;
}

.brand-composite-img {
  display: block;
  height: 64px;
  width: auto;
  max-width: min(44vw, 360px);
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

/* HOVER EFFECT (CLEAR + PREMIUM) */
.logo-container:hover .logo-img {
  filter: brightness(1.2) contrast(1.1);
  transform: scale(1.05);
}

.logo-container:hover .brand-composite-img {
  transform: scale(1.02);
}

.logo-container:hover .brand-text {
  color: var(--brand-yellow);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--brand-yellow);
  color: #000;
  font-size: 13px;
  padding: 6px 0;
  margin: 0; /* important */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1100;
  height: var(--top-bar-height);
  line-height: 1.15;
  display: flex;
  align-items: center;
}

body {
  padding-top: calc(var(--top-bar-height) + var(--navbar-height));
}

.home-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
}

.home-popup-overlay.is-hidden {
  display: none;
}

body.home-popup-open {
  overflow: hidden;
}

.home-popup-dialog {
  position: relative;
  width: min(86vw, 390px);
  max-height: calc(100vh - 64px);
}

.home-popup-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}

.home-popup-close:hover {
  background: var(--brand-yellow);
}

.home-popup-banner {
  display: block;
  width: 100%;
  max-height: calc(100vh - 64px);
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.premium-navbar {
  position: fixed;
  top: var(--top-bar-height);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1099;
  margin-top: 0;
}
.top-bar a {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  text-decoration: none;
  font-weight: 500;
  line-height: 1;
}

.facebook-link {
  color: #1877f2;
}

.twitter-link {
  color: #1da1f2;
}

.instagram-link {
  color: #e1306c;
}

.top-bar a:hover {
  text-decoration: underline;
}

/* ===== NAVBAR ===== */
.premium-navbar {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* LOGO */
.logo-img {
  height: 45px;
}

.brand-text {
  color: var(--brand-yellow);
  font-weight: bold;
}

/* LINKS */
.nav-link {
  color: #333 !important;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--brand-yellow) !important;
}

/* BUTTON */
.btn-gold {
  margin-left: 15px;
  background: var(--brand-yellow);
  color: #000;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;

}

.btn-gold:hover {
  background: var(--brand-yellow);
}

/* CONTROL MENU SPACING */
.custom-nav .nav-item {
  margin-left: 10px;
}

/* REDUCE SPACE BETWEEN LINKS */
.custom-nav .nav-link {
  padding-left: 6px;
  padding-right: 6px;
  font-size: 15px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.premium-navbar .btn-gold {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* OPTIONAL: EVEN TIGHTER */
@media (min-width: 992px) {
  .custom-nav .nav-item {
    margin-left: 8px;
  }
}

/* CUSTOM DROPDOWN WIDTH */
.custom-dropdown {
  min-width: 260px; /* enough for long text */
  padding: 8px 0;
}

/* PREVENT TEXT CUT */
.custom-dropdown .dropdown-item {
  white-space: normal;
  font-size: 14px;
  line-height: 1.4;
}

/* GLOBAL MENU CONTROL */
.custom-nav .nav-link {
  padding: 4px 8px;
  font-size: 14px; /* slightly smaller */
  white-space: nowrap; /* prevents breaking */
}

/* REDUCE OVERALL WIDTH */
.custom-nav .nav-item {
  margin-left: 6px;
}
/* ALLOW BREAK ONLY WHEN NEEDED */
@media (max-width: 1200px) {
  .custom-nav .nav-link {
    white-space: normal;
  }

  .brand-composite-img {
    max-width: min(38vw, 300px);
  }
}

#home {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  min-height: 82vh;
  overflow: hidden;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 223, 34, 0.18);
  color: #7a6100;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.home-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #161616;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

/* CAROUSEL IMAGE */
#home .carousel,
#home .carousel-inner,
#home .carousel-item {
  width: 100%;
  min-height: 75vh;
}

.carousel-item img,
.carousel-img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  object-position: center top;
  background-color: #000;
  filter: brightness(0.68) contrast(1.05);
}

#home .carousel-item:nth-child(4) .carousel-img,
#home .carousel-item:nth-child(4) img {
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 768px) {
  .carousel-item img,
  .carousel-img {
    height: 70vh;
    object-fit: cover;
    object-position: center top;
  }

  #home .carousel-item:nth-child(4) .carousel-img,
  #home .carousel-item:nth-child(4) img {
    object-fit: cover;
    object-position: top center;
  }
}

/* TEXT OVERLAY */
.carousel-caption {
  bottom: 50%;
  transform: translateY(50%);
  text-align: center;
}

.carousel-caption h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 18px;
}

.carousel-caption p {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  max-width: 620px;
  margin: 0 auto;
}

.home-hero-caption {
  left: 50%;
  right: auto;
  width: min(92%, 900px);
  transform: translate(-50%, 50%);
  padding: 40px 32px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(10,10,10,0.22), rgba(10,10,10,0.48));
  backdrop-filter: blur(3px);
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--brand-yellow);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-hero-outline {
  border: 1px solid rgba(255,255,255,0.75);
  color: #fff;
  border-radius: 50px;
  padding: 10px 26px;
  font-weight: 700;
  background: transparent;
}

.btn-hero-outline:hover {
  background: #fff;
  color: #111;
}

.split-hero-section {
  background: linear-gradient(135deg, #fffdf5 0%, #fff9d8 45%, #ffffff 100%);
  padding: 30px 0 70px;
}

.split-hero-carousel {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

.split-carousel-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  filter: brightness(1.08) contrast(1.12) saturate(1.08);
}

.split-hero-content {
  max-width: 560px;
  padding-left: 30px;
}

.split-hero-content h1 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  color: #111;
  margin-bottom: 20px;
}

.split-hero-content p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0;
}

.btn-split-outline {
  border: 1px solid #111;
  color: #111;
  border-radius: 50px;
  padding: 10px 26px;
  font-weight: 700;
  background: transparent;
}

.split-hero-content .btn-gold,
.split-hero-content .btn-split-outline {
  height: 50px;
  min-height: 50px;
  padding: 0 26px;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-split-outline:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 991px) {
  .premium-navbar .container-fluid {
    min-height: 74px;
  }

  .brand-composite-img {
    height: 56px;
    max-width: min(62vw, 280px);
  }

  .premium-navbar .navbar-collapse {
    padding: 14px 0 18px;
  }

  .split-carousel-img {
    height: 280px;
  }

  .split-hero-content {
    padding-left: 0;
    text-align: center;
    margin: 0 auto;
  }

  .split-hero-content .hero-actions {
    justify-content: center !important;
  }
}

/* BUTTON */
.btn-gold {
  background: #FFDF22;
  color: #000;
  border-radius: 50px;
  padding: 10px 25px;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 28px;
  }

  .carousel-img {
    height: 70vh;
  }
}

@media (max-width: 480px) {
  .brand-composite-img {
    height: 48px;
    max-width: 64vw;
  }

  .top-bar {
    height: 32px;
    font-size: 12px;
  }

  .premium-navbar .nav-link {
    font-size: 13px;
  }

  .carousel-caption h1 {
    font-size: 24px;
  }

  .carousel-caption p {
    font-size: 14px;
  }

  .btn-gold {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .activity-img {
    height: 180px;
  }

  .testimonial-card p {
    font-size: 1.05rem;
  }

  .involved-section .involve-card {
    padding: 22px;
  }

  .contact-hero h1 {
    font-size: 2.1rem;
  }

  .contact-card {
    padding: 18px;
  }
}

/* IMPACT */
.impact-section {
  background:
    radial-gradient(circle at top left, rgba(255,223,34,0.13), transparent 28%),
    #fff;
  padding: 90px 0;
}

.impact-section .container {
  max-width: 1100px;
}

.impact-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 28px;
  padding: 36px 24px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.counter {
  font-size: 46px;
  color: #121212;
  font-weight: 800;
  margin-bottom: 8px;
}

.impact-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-yellow);
  color: #111;
  font-size: 1.8rem;
}

.impact-card p {
  margin: 0;
  color: #5a5a5a;
  font-weight: 600;
}
/* ABOUT */
.about-section {
  padding: 90px 0;
  background: #f8f8f8;
}

/* SECTION */
.projects-section {
  background: #ffffff;
  padding: 90px 0;
}

/* CARD */
.project-card {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 22px 42px rgba(0,0,0,0.08);
}

/* IMAGE WRAPPER */
.project-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
}

/* IMAGE */
.project-img-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.84));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  opacity: 1;
  transition: 0.4s;
  text-align: left;
  padding: 32px;
}

/* HOVER EFFECT */
.project-img-wrapper:hover img {
  transform: scale(1.1);
}

.project-img-wrapper:hover .project-overlay {
  opacity: 1;
}

/* TEXT */
.project-overlay h5 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.project-overlay p {
  font-size: 0.98rem;
  margin-bottom: 16px;
  max-width: 280px;
}

.projects-page-hero {
  padding: 100px 0 80px;
  background:
    radial-gradient(circle at top, rgba(255, 223, 34, 0.28), transparent 38%),
    linear-gradient(135deg, #fffdf2 0%, #fff8cf 48%, #ffffff 100%);
}

.projects-page-hero h1 {
  max-width: 900px;
  margin: 16px auto 18px;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  font-weight: 800;
  color: #161616;
}

.projects-page-hero .lead {
  max-width: 760px;
  margin: 0 auto;
  color: #575757;
}

.project-detail-section {
  padding: 90px 0;
  background: #ffffff;
}

.project-story-card {
  background: rgba(255,255,255,0.96);
  border-radius: 28px;
  padding: 34px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 20px 45px rgba(0,0,0,0.07);
}

.project-story-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.project-story-header h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  font-weight: 800;
  color: #171717;
}

.project-meta {
  color: #6a6a6a;
  font-weight: 600;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 223, 34, 0.2);
  color: #6b5600;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-story-card p {
  color: #414141;
  margin-bottom: 16px;
}

.project-points {
  margin: 0;
  padding-left: 1.2rem;
  color: #2c2c2c;
}

.project-points li + li {
  margin-top: 10px;
}

@media (max-width: 767.98px) {
  .project-story-card {
    padding: 24px;
  }

  .project-story-header {
    flex-direction: column;
  }

  .project-badge {
    white-space: normal;
  }
}

/* TESTIMONIAL SECTION */
.testimonial-section {
  padding: 90px 0;
  position: relative;
  background: linear-gradient(120deg, #fffdf4 0%, #fff8d8 40%, #ffffff 100%);
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,160,34,0.15), transparent 50%);
  pointer-events: none;
}

.testimonial-section .container {
  position: relative;
  z-index: 2;
}

.testimonial-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1f1f1f;
  margin-bottom: 2.2rem;
}

.testimonial-card {
  max-width: 700px;
  margin: auto;
  background: rgba(255,255,255,0.96);
  padding: 48px 40px;
  border-radius: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: var(--brand-yellow);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 58px rgba(0,0,0,0.11);
}

.testimonial-card p {
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1.35rem;
}

.testimonial-card h6 {
  margin: 0;
  color: #FFDF22;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FFDF22;
}

.carousel-indicators .active {
  width: 14px;
  height: 14px;
  background-color: #FFDF22;
}

/* INVOLVED SECTION */
.involved-section {
  background: #f7f7f7;
  padding: 90px 0 100px;
}

.involved-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.involve-card {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  font-size: 1.1rem;
  font-weight: 700;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  color: #111;
  text-decoration: none;
}

.involve-card i {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(255,223,34,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: #111;
}

.partner-handshake-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(255,223,34,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

.partner-handshake-icon svg {
  width: 34px;
  height: 34px;
}

.involve-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 42px rgba(0,0,0,0.18);
  border-color: rgba(255,223,34,0.9);
  color: #111;
  background: linear-gradient(135deg, #FFDF22 0%, #fff5a6 100%);
}

.footer-list li a:hover {
  color: #faf0d0;
  text-decoration: underline;
}

.text-gold {
  color: var(--brand-yellow) !important;
}

footer {
  font-size: 14px;
  letter-spacing: 0.02em;
  background: radial-gradient(circle at top left, #1c1c1c, #121212);
}

footer a.btn-outline-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.23);
  font-weight: 600;
}

footer a.btn-outline-light:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.45);
}

/* DONATE */
.donate-banner {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.5), transparent 25%),
    linear-gradient(45deg, #FFDF22, #ffe969);
  color: #000;
  padding: 90px 0;
}

.donate-banner h2 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 22px;
}

.donate-banner .btn-gold:hover {
  background: #111;
  color: #fff;
}

/* CONTACT PAGE */
.contact-hero {
  background: linear-gradient(150deg, #faf9f6 0%, #fff4e5 45%, #fffdfa 100%);
  padding: 95px 0;
}

/* BLOG */
.blog-hero {
  background: linear-gradient(135deg, #fefbf8 0%, #fff7ee 100%);
  padding: 80px 0;
}

.blog-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
}

.blog-hero .lead {
  color: #5e5e5e;
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  background: #fff;
}

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px;
}

.blog-card-body h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
}

.blog-card-body p {
  margin-bottom: 1rem;
}

.blog-detail-img {
  height: 360px;
}

.blog-full-content {
  color: #343434;
  line-height: 1.8;
  margin-top: 1.5rem;
  white-space: normal;
}

.blog-full-content h1,
.blog-full-content h2,
.blog-full-content h3,
.blog-full-content h4 {
  margin-top: 1.4rem;
}

.blog-full-content blockquote {
  border-left: 4px solid #d2b500;
  color: #555;
  margin-left: 0;
  padding-left: 16px;
}

.blog-full-content pre {
  background: #f3f4f6;
  border-radius: 8px;
  overflow-x: auto;
  padding: 14px;
}

.blog-full-content .ql-align-center {
  text-align: center;
}

.blog-full-content .ql-align-right {
  text-align: right;
}

.blog-full-content .ql-align-justify {
  text-align: justify;
}

.blog-full-content .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}

.blog-full-content .ql-indent-1 { padding-left: 3em; }
.blog-full-content .ql-indent-2 { padding-left: 6em; }
.blog-full-content .ql-indent-3 { padding-left: 9em; }
.blog-full-content .ql-indent-4 { padding-left: 12em; }
.blog-full-content .ql-indent-5 { padding-left: 15em; }
.blog-full-content .ql-indent-6 { padding-left: 18em; }
.blog-full-content .ql-indent-7 { padding-left: 21em; }
.blog-full-content .ql-indent-8 { padding-left: 24em; }

.blog-full-content .ql-size-small {
  font-size: 0.85em;
}

.blog-full-content .ql-size-large {
  font-size: 1.35em;
}

.blog-full-content .ql-size-huge {
  font-size: 1.8em;
}

.blog-full-content .ql-font-serif {
  font-family: Georgia, "Times New Roman", serif;
}

.blog-full-content .ql-font-monospace {
  font-family: Consolas, Monaco, "Courier New", monospace;
}

.sidebar-box {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.sidebar-box h5 {
  margin-bottom: 1rem;
}

.sidebar-box a {
  color: #1f1f1f;
  text-decoration: none;
  display: block;
  margin-bottom: 0.65rem;
}

.sidebar-box a:hover {
  color: #FFDF22;
}

/* SUCCESS STORIES */
.story-hero {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 223, 34, 0.38), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(255, 154, 60, 0.18), transparent 30%),
    linear-gradient(135deg, #fffaf0 0%, #f8efe0 52%, #fffdf8 100%);
  overflow: hidden;
  padding: 90px 0;
  position: relative;
}

.story-hero::after {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 223, 34, 0.45);
  border-radius: 999px;
  content: "";
  height: 170px;
  position: absolute;
  right: -48px;
  top: 42px;
  width: 170px;
}

.story-eyebrow {
  color: #8a5d00;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.story-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 900;
}

.story-hero .lead {
  color: #5d5242;
  margin-inline: auto;
  max-width: 760px;
}

.story-content {
  background:
    linear-gradient(90deg, rgba(255, 223, 34, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #fffdf8 0%, #f7f1e8 100%);
  background-size: 34px 34px, auto;
}

.story-intro-strip {
  align-items: center;
  background: #1f1a13;
  border-radius: 999px;
  color: #fff;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 34px;
  padding: 14px 20px;
}

.story-intro-strip span {
  background: #ffdf22;
  border-radius: 999px;
  color: #171717;
  flex: 0 0 auto;
  font-weight: 900;
  padding: 8px 14px;
}

.story-intro-strip p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.story-gallery {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-tile {
  background: #fff;
  border: 1px solid rgba(66, 45, 12, 0.12);
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(54, 36, 8, 0.09);
  display: grid;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-tile:hover {
  box-shadow: 0 26px 44px rgba(54, 36, 8, 0.14);
  transform: translateY(-5px);
}

.story-tile-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(320px, 48%) 1fr;
}

.story-tile-image {
  display: block;
  min-height: 260px;
  overflow: hidden;
}

.story-tile-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  width: 100%;
}

.story-tile:hover .story-tile-image img {
  transform: scale(1.04);
}

.story-tile-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 4vw, 38px);
}

.story-number {
  color: #d29b00;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

.story-tile h3 {
  color: #22170b;
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  font-weight: 850;
  line-height: 1.15;
  margin-bottom: 14px;
}

.story-tile p {
  color: #655b4d;
  line-height: 1.75;
  margin-bottom: 20px;
}

.story-read-link {
  align-items: center;
  color: #6d5200;
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  margin-top: auto;
  text-decoration: none;
}

.story-read-link:hover {
  color: #111;
}

.story-detail-shell {
  background: #fff;
  border: 1px solid rgba(66, 45, 12, 0.12);
  border-radius: 34px;
  box-shadow: 0 24px 48px rgba(54, 36, 8, 0.12);
  display: grid;
  grid-template-columns: minmax(320px, 44%) 1fr;
  overflow: hidden;
}

.story-detail-media {
  background: #2b2116;
  min-height: 560px;
}

.story-detail-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.story-detail-copy {
  padding: clamp(28px, 5vw, 58px);
}

.story-detail-copy h2 {
  color: #20160b;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.story-empty {
  background: #fff;
  border: 1px dashed rgba(87, 65, 18, 0.32);
  border-radius: 24px;
  grid-column: 1 / -1;
  padding: 36px;
  text-align: center;
}

@media (max-width: 767px) {
  .story-intro-strip,
  .story-tile-featured,
  .story-detail-shell {
    grid-template-columns: 1fr;
  }

  .story-intro-strip {
    align-items: flex-start;
    border-radius: 24px;
    flex-direction: column;
  }

  .story-gallery {
    grid-template-columns: 1fr;
  }

  .story-detail-media {
    min-height: 300px;
  }
}

@media (min-width: 768px) {
  .story-tile:not(.story-tile-featured):nth-child(3n) {
    transform: translateY(28px);
  }

  .story-tile:not(.story-tile-featured):nth-child(3n):hover {
    transform: translateY(22px);
  }
}

/* EVENTS PAGE */
.events-header {
  background: linear-gradient(125deg, #fdf9f0 0%, #fff6e4 50%, #fffdfa 100%);
  padding: 80px 0;
}

.events-header h1 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #1b1b1b;
}

.events-header .lead {
  color: #4a4a4a;
}

.event-list-section {
  padding: 80px 0 90px;
}

.activity-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  background: #fff;
  transition: all 0.25s ease;
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(0,0,0,0.14);
}

.activity-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.activity-content {
  padding: 18px;
}

.activity-content h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.activity-content p {
  color: #555;
  margin-bottom: 12px;
}

.activity-content small {
  color: #6a6a6a;
}

.activity-content .btn-gold {
  font-size: 0.9rem;
  padding: 7px 18px;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f1f1f;
}

.contact-hero .lead {
  color: #666;
  margin-bottom: 1.5rem;
}

.contact-info {
  font-size: 0.98rem;
  color: #444;
  margin-top: 1.1rem;
}

.contact-info li {
  margin-bottom: 8px;
}

.contact-card {
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.22);
  background: #fff;
  box-shadow: 0 20px 35px rgba(0,0,0,0.08);
}

.contact-card .form-control {
  border-radius: 8px;
}

.contact-card button.btn-gold {
  background: #FFDF22;
  color: #000;
  font-weight: 700;
  border-radius: 50px;
}

.contact-card button.btn-gold:hover {
  background: #FFDF22;
  color: #000;
}

/* MEDIA GALLERY */
.media-gallery-section {
  background: #fff;
  padding: 90px 0;
}

.media-gallery-section .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.media-gallery-section .lead {
  color: #555;
  margin-bottom: 1.75rem;
}

.gallery-grid .gallery-item {
  position: relative;
  display: block;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
  background: #000;
  width: 100%;
  height: 100%;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-grid .gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.25);
}

.gallery-grid .gallery-item img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-grid .gallery-item:hover img {
  transform: scale(1.18);
  filter: brightness(0.8);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.55));
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-grid .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 24px 54px rgba(0,0,0,0.3);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: rgba(255,255,255,0.95);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.6rem;
  color: #333;
  cursor: pointer;
  z-index: 10;
}

.lightbox-controls {
  position: absolute;
  bottom: 30px;
  display: flex;
  gap: 0.8rem;
}

.lightbox-controls button {
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.95);
  font-size: 1.05rem;
}

/* ABOUT SECTION */
.about-section {
  background:
    radial-gradient(circle at top right, rgba(255,223,34,0.14), transparent 30%),
    #f8f8f8;
  padding: 90px 0;
}

/* CARD */
.about-card {
  background: #fff;
  padding: 28px;
  border-radius: 28px;
  transition: 0.3s;
  text-align: center;
  height: 100%;
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

/* ICON */
.about-icon {
  font-size: 30px;
  color: #FFDF22;
  margin-bottom: 10px;
}

/* IMAGE */
.about-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 20px;
}

/* TITLE */
.about-card h4 {
  font-size: 1.3rem;
  color: #FFDF22;
}

/* HOVER EFFECT */
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ABOUT PAGE */
.about-page-hero {
  background:
    radial-gradient(circle at top right, rgba(255,223,34,0.22), transparent 35%),
    linear-gradient(135deg, #fdf9df 0%, #fff 55%, #f6f6f6 100%);
  padding: 84px 0 64px;
}

.about-page-hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: #1f1f1f;
  margin: 12px 0 14px;
}

.about-page-hero .lead {
  max-width: 860px;
  margin: 0 auto;
  color: #444;
}

.about-submenu-wrap {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.about-submenu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 15px 0;
}

.about-submenu a {
  color: #2d2d2d;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  transition: 0.25s ease;
}

.about-submenu a:hover {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: #111;
}

.about-detail-section {
  padding: 72px 0;
}

.section-soft {
  background: #fafafa;
}

.about-detail-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 44px rgba(0,0,0,0.07);
}

.president-message-card {
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, #fffef7 0%, #ffffff 52%, #fff7db 100%);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 26px 54px rgba(0,0,0,0.08);
}

.president-photo-panel {
  height: 100%;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(255,223,34,0.35), transparent 34%),
    linear-gradient(180deg, #fff5c5 0%, #fffdf6 100%);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.president-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
  display: block;
  box-shadow: 0 22px 44px rgba(0,0,0,0.16);
}

.president-message-body {
  padding: 40px 42px;
}

.president-message-body h2 {
  margin: 10px 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #171717;
}

.president-message-lead {
  font-size: 1.08rem;
  font-weight: 600;
  color: #434343;
}

.president-message-body p {
  color: #444;
}

.president-signoff {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.1);
  min-width: min(100%, 260px);
}

.president-signoff strong {
  font-size: 1.05rem;
  color: #151515;
}

.president-signoff span {
  color: #8a6a00;
  font-weight: 700;
}

.about-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,223,34,0.24);
  color: #a88900;
  font-size: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.about-detail-card h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin-bottom: 14px;
  color: #1d1d1d;
}

.about-detail-card p {
  color: #333;
}

.about-objectives-list {
  padding-left: 1.25rem;
  margin: 0;
}

.about-objectives-list li {
  margin-bottom: 0.95rem;
}

.about-objectives-list li:last-child {
  margin-bottom: 0;
}

.team-member-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffdf4 100%);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 44px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(0,0,0,0.12);
}

.team-member-photo-wrap {
  position: relative;
  padding: 22px 22px 0;
}

.team-member-photo {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  display: block;
  background: #f0f0f0;
}

.team-member-body {
  padding: 20px 22px 24px;
}

.team-member-role {
  margin-bottom: 8px;
  color: #9a7b00;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-member-body h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1d1d1d;
}

.team-member-bio {
  color: #4b4b4b;
}

.org-chart-wrap {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.org-chart-img {
  width: 100%;
  height: auto;
  display: block;
}

.volunteer-hero {
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(255,223,34,0.22), transparent 30%),
    linear-gradient(135deg, #fffef6 0%, #fff8d7 42%, #ffffff 100%);
}

.volunteer-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 0.96;
  color: #181818;
  max-width: 760px;
  margin: 16px 0 18px;
}

.volunteer-hero .lead {
  max-width: 640px;
  color: #4c4c4c;
}

.volunteer-info-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 24px 52px rgba(0,0,0,0.08);
}

.volunteer-info-card h2,
.volunteer-help-card h2 {
  margin-bottom: 18px;
  font-size: 1.45rem;
  font-weight: 800;
  color: #181818;
}

.volunteer-info-list,
.volunteer-checklist {
  margin: 0;
  padding-left: 1.2rem;
  color: #3f3f3f;
}

.volunteer-info-list li + li,
.volunteer-checklist li + li {
  margin-top: 12px;
}

.volunteer-info-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,223,34,0.16);
  color: #5a4b00;
  font-weight: 600;
}

.volunteer-paths-section {
  padding: 84px 0;
  background: #ffffff;
}

.volunteer-path-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf3 100%);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  scroll-margin-top: 140px;
}

.volunteer-path-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 54px rgba(0,0,0,0.12);
  border-color: rgba(255,223,34,0.9);
}

.volunteer-path-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,223,34,0.22);
  color: #171717;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.volunteer-path-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #151515;
}

.volunteer-path-card p {
  margin-bottom: 0;
  color: #4b4b4b;
  max-width: 270px;
}

.volunteer-path-card a {
  color: transparent;
}

.volunteer-form-section {
  padding: 88px 0;
  background:
    radial-gradient(circle at top, rgba(255,223,34,0.12), transparent 26%),
    #f8f8f8;
  scroll-margin-top: 140px;
}

.volunteer-form-lead {
  max-width: 760px;
  margin: 0 auto;
  color: #555;
}

.volunteer-form-shell {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 26px 58px rgba(0,0,0,0.08);
}

.volunteer-form-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: linear-gradient(135deg, #fffdf4 0%, #fff7d6 100%);
}

.volunteer-form-toolbar-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #4b4b4b;
}

.volunteer-form-toolbar-copy strong {
  color: #171717;
}

.volunteer-form-frame-wrap {
  background: #f6f6f6;
  padding: 0;
}

.volunteer-form-frame {
  display: block;
  width: 100%;
  min-height: 1420px;
  border: 0;
  background: #fff;
}

.volunteer-native-form-shell {
  background: #ffffff;
  border-radius: 30px;
  padding: 34px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 26px 58px rgba(0,0,0,0.08);
}

.volunteer-form-section-label {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,223,34,0.18);
  color: #735800;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.volunteer-input {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 0.85rem 1rem;
  box-shadow: none;
}

textarea.volunteer-input {
  min-height: auto;
}

.volunteer-input:focus {
  border-color: rgba(255,223,34,0.95);
  box-shadow: 0 0 0 0.2rem rgba(255,223,34,0.22);
}

.volunteer-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.volunteer-checkbox-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.volunteer-check-card,
.volunteer-option-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fffdf6;
  color: #262626;
  font-weight: 600;
}

.volunteer-check-card input[type="checkbox"],
.volunteer-option-row input[type="radio"] {
  margin: 0;
}

.volunteer-option-other,
.volunteer-check-card-other {
  align-items: stretch;
  flex-wrap: wrap;
}

.volunteer-option-other .form-control,
.volunteer-check-card-other .form-control {
  flex: 1 1 220px;
}

.volunteer-radio-stack {
  display: grid;
  gap: 12px;
}

.volunteer-photo-preview {
  margin-top: 14px;
}

.volunteer-photo-preview img {
  width: 120px;
  height: 150px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.volunteer-submit-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.volunteer-help-section {
  padding: 0 0 96px;
  background: #f8f8f8;
}

.volunteer-help-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 38px rgba(0,0,0,0.06);
}

.volunteer-help-card p {
  color: #4c4c4c;
}

@media (max-width: 767.98px) {
  .about-page-hero {
    padding: 62px 0 42px;
  }

  .about-submenu {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 16px;
  }

  .about-submenu a {
    white-space: nowrap;
  }

  .about-detail-section {
    padding: 52px 0;
  }

  .about-detail-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .president-photo-panel {
    padding: 22px 22px 0;
  }

  .president-photo {
    max-width: 260px;
    border-radius: 22px;
  }

  .president-message-body {
    padding: 24px 20px 26px;
  }

  .volunteer-hero {
    padding: 72px 0 56px;
  }

  .volunteer-info-card,
  .volunteer-help-card,
  .volunteer-path-card {
    border-radius: 22px;
    padding: 22px;
  }

  .volunteer-form-toolbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 18px 20px;
  }

  .volunteer-form-frame {
    min-height: 1600px;
  }

  .volunteer-native-form-shell {
    padding: 22px;
    border-radius: 22px;
  }

  .volunteer-checkbox-grid,
  .volunteer-checkbox-grid-wide {
    grid-template-columns: 1fr;
  }

  .volunteer-submit-bar {
    align-items: flex-start;
  }

  .team-member-photo-wrap {
    padding: 18px 18px 0;
  }

  .team-member-body {
    padding: 18px 18px 22px;
  }

  .home-popup-overlay {
    padding: 16px;
  }

  .home-popup-dialog {
    width: min(94vw, 390px);
  }

  .home-popup-close {
    top: 8px;
    right: 8px;
  }
}
