:root{
  --bg:#ffffff;
  --card:#ffffff;
  --muted:#6b7280;
  --accent:#031273; /* royal blue */
  --accent-dark:#020d50;
  --gold:#FFD700; /* rich golden */
  --dark:#0f172a;
  --light-bg:#f8fafc;
  --radius:12px;
  --max-width:1200px;
  --shadow-sm:0 2px 8px rgba(0,0,0,0.05);
  --shadow-md:0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg:0 20px 50px rgba(0,0,0,0.15);
}
*{box-sizing:border-box;margin:0;padding:0}
html{
  scroll-behavior:smooth;
  overflow-x:hidden;
  scroll-padding-top:100px; /* Offset for sticky header - handles scroll position automatically */
}
html,body{height:100%;width:100%}

/* Add scroll-margin to all sections for proper alignment with sticky header */
section[id]{
  scroll-margin-top:100px; /* Accounts for header height + spacing */
}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:var(--dark);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.7;
  font-size:16px;
  overflow-x:hidden;
}
.container{max-width:var(--max-width);margin:0 auto;padding:0 2rem}

/* Spaced Heading Style (like Isaac TV) */
.spaced-heading{
  letter-spacing:0.4em;
  font-weight:300;
  text-transform:uppercase;
}

/* Crown Icon Overlay */
.crown-icon-overlay{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  z-index:100;
  pointer-events:none;
}
.crown-icon-overlay img{
  width:100px;
  height:auto;
  opacity:0.9;
  filter:drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.page-content-wrapper{
  position:relative;
}
.page-section-with-crown{
  padding-top:3rem;
}

/* Header */
.site-header{
  background:rgba(255,255,255,0.98);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(0,0,0,0.08);
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 12px rgba(0,0,0,0.04);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.2rem 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:1rem;
  flex-shrink:0;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
  transition:opacity 0.2s ease;
}
.brand:hover{
  opacity:0.8;
}
.logo{
  width: 60px;
  height:60px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  border:2px solid #fff;
  margin-left: 8px;
}
.brand-text h1{
  margin:0;
  font-size:1.2rem;
  font-weight:700;
  letter-spacing:2px;
  color:var(--dark);
}
.brand-text .tag{
  margin:0;
  color:var(--muted);
  font-size:0.75rem;
  font-weight:400;
}
.nav{
  display:flex;
  gap:1.5rem;
  align-items:center;
}
.nav a{
  padding:0.6rem 1.2rem;
  text-decoration:none;
  color:var(--dark);
  font-weight:500;
  font-size:0.95rem;
  transition:all 0.3s;
}
.nav a:hover{
  color:var(--accent);
}
.nav-item{
  position:relative;
}
.nav-link{
  display:block;
  padding:0.6rem 1.2rem;
  text-decoration:none;
  color:var(--dark);
  font-weight:500;
  font-size:0.95rem;
  transition:all 0.3s;
}
.nav-link:hover{
  color:var(--accent);
}
.nav-item.has-submenu .nav-link{
  display:flex;
  align-items:center;
  gap:0.4rem;
}
.nav-item.has-submenu .nav-link::after{
  content:'▾';
  font-size:0.7rem;
  transition:transform 0.3s ease;
}
.nav-item.has-submenu:hover .nav-link::after,
.nav-item.has-submenu:focus-within .nav-link::after{
  transform:rotate(180deg);
}
.nav-submenu{
  position:absolute;
  top:calc(100% + 0.75rem);
  left:0;
  min-width:200px;
  background:#fff;
  border-radius:12px;
  box-shadow:var(--shadow-lg);
  padding:0.75rem 0;
  display:flex;
  flex-direction:column;
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:opacity 0.2s ease, transform 0.2s ease;
  z-index:1000;
}
.nav-submenu a{
  padding:0.6rem 1.5rem;
  color:var(--muted);
  font-size:0.9rem;
}
.nav-submenu a:hover{
  background:rgba(30,64,175,0.08);
  color:var(--accent);
}
.nav-item.has-submenu:hover .nav-submenu,
.nav-item.has-submenu:focus-within .nav-submenu{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.btn-nav{
  background:var(--accent);
  color:#fff !important;
  border-radius:8px;
  padding:0.6rem 1.2rem !important;
  box-shadow:var(--shadow-sm);
  font-size:0.85rem;
  white-space:nowrap;
  flex-shrink:0;
  text-align:center;
  display:inline-block;
}
.btn-nav:hover{
  background:var(--accent-dark);
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}

/* Mobile-friendly btn-nav */
@media (max-width:1024px){
  .btn-nav{
    padding:0.5rem 1rem !important;
    font-size:0.8rem;
  }
}
@media (max-width:768px){
  .btn-nav{
    padding:0.5rem 0.9rem !important;
    font-size:0.75rem;
    border-radius:6px;
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:0.5rem;
  z-index:1001;
}
.mobile-menu-toggle span{
  width:25px;
  height:3px;
  background:var(--dark);
  border-radius:3px;
  transition:all 0.3s;
}

/* Mobile Side Navigation */
.mobile-side-nav{
  position:fixed;
  top:0;
  left:-100%;
  width:320px;
  max-width:85vw;
  height:100vh;
  background:#fff;
  z-index:2000;
  overflow-y:auto;
  transition:left 0.3s ease;
  box-shadow:2px 0 15px rgba(0,0,0,0.1);
}
.mobile-side-nav.active{
  left:0;
}
.mobile-nav-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,0.5);
  z-index:1999;
  opacity:0;
  visibility:hidden;
  transition:all 0.3s;
}
.mobile-nav-overlay.active{
  opacity:1;
  visibility:visible;
}
.mobile-nav-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.5rem;
  border-bottom:1px solid rgba(0,0,0,0.1);
}
.mobile-nav-logo{
  width:50px;
  height:50px;
  object-fit:contain;
  border-radius:8px;
}
.mobile-nav-close{
  background:none;
  border:none;
  cursor:pointer;
  padding:0.5rem;
}
.mobile-nav-close svg{
  width:24px;
  height:24px;
  color:var(--dark);
}
.mobile-nav-search{
  position:relative;
  padding:1rem 1.5rem;
  border-bottom:1px solid rgba(0,0,0,0.1);
}
.mobile-search-input{
  width:100%;
  padding:0.8rem 2.5rem 0.8rem 1rem;
  border:1px solid rgba(0,0,0,0.2);
  border-radius:8px;
  font-family:inherit;
  font-size:0.9rem;
}
.mobile-search-icon{
  position:absolute;
  right:2rem;
  top:50%;
  transform:translateY(-50%);
  width:20px;
  height:20px;
  color:var(--muted);
}
.mobile-nav-links{
  padding:1rem 0;
}
.mobile-nav-link{
  display:block;
  padding:1rem 1.5rem;
  color:var(--dark);
  text-decoration:none;
  font-weight:500;
  font-size:0.95rem;
  transition:all 0.2s;
  border-left:3px solid transparent;
}
.mobile-nav-link:hover{
  background:var(--light-bg);
  border-left-color:var(--accent);
  color:var(--accent);
}
.mobile-nav-dropdown{
  position:relative;
}
.dropdown-toggle{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  cursor:pointer;
  position:relative;
}
.dropdown-toggle::after{
  content:'▼';
  position:absolute;
  right:1.5rem;
  font-size:0.7rem;
  transition:transform 0.3s;
}
.mobile-nav-dropdown.active .dropdown-toggle::after{
  transform:rotate(180deg);
}
.mobile-dropdown-content{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.3s ease;
  background:var(--light-bg);
}
.mobile-nav-dropdown.active .mobile-dropdown-content{
  max-height:200px;
}
.mobile-dropdown-content a{
  display:block;
  padding:0.8rem 1.5rem 0.8rem 3rem;
  color:var(--muted);
  text-decoration:none;
  font-size:0.9rem;
}
.mobile-dropdown-content a:hover{
  color:var(--accent);
  background:rgba(30,64,175,0.05);
}

/* Hero Section */
.hero{
  position:relative;
  min-height:85vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:var(--dark);
}
.hero-bg-wrapper{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.4) saturate(0.8);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(30,64,175,0.5) 0%, rgba(15,23,42,0.7) 100%);
}
.hero-content{
  position:relative;
  padding:6rem 2rem;
  text-align:center;
  z-index:10;
}
.hero-logo-badge{
  width:150px;
  height:150px;
  margin:0 auto 2rem;
  background:linear-gradient(135deg, #fff 0%, #f1f5f9 100%);
  border-radius:50%;
  padding:20px;
  box-shadow:0 20px 60px rgba(0,0,0,0.4), 0 0 0 10px rgba(255,255,255,0.1);
  animation:float 4s ease-in-out infinite;
}
.hero-logo-badge img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:50%;
}
@keyframes float{
  0%, 100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}
.hero-title{
  font-size:3.5rem;
  font-weight:700;
  line-height:1.2;
  color:#ffffff;
  margin:0 0 0.5rem;
  text-shadow:0 4px 20px rgba(0,0,0,0.5);
  letter-spacing:0.05em;
}
.hero-subtitle{
  font-size:1.4rem;
  line-height:1.4;
  color:#e2e8f0;
  margin:0 0 1rem;
  font-weight:400;
  text-shadow:0 2px 10px rgba(0,0,0,0.3);
  letter-spacing:0.05em;
}
.hero-tagline{
  font-size:1.1rem;
  line-height:1.6;
  color:#cbd5e1;
  margin:0 0 3rem;
  font-weight:400;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:3rem;
}
.hero-cta{
  display:flex;
  gap:1.5rem;
  justify-content:center;
  flex-wrap:wrap;
}
.btn-primary{
  display:inline-block;
  padding:1.1rem 3rem;
  background:linear-gradient(135deg, var(--gold) 0%, #b8862e 100%);
  color:#fff;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  font-size:1rem;
  transition:all 0.3s;
  box-shadow:0 8px 24px rgba(212,162,73,0.4);
  text-transform:uppercase;
  letter-spacing:1px;
}
.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 36px rgba(212,162,73,0.5);
}
.btn-secondary{
  display:inline-block;
  padding:1.1rem 3rem;
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(10px);
  color:#fff;
  border:2px solid rgba(255,255,255,0.4);
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  font-size:1rem;
  transition:all 0.3s;
  text-transform:uppercase;
  letter-spacing:1px;
}
.btn-secondary:hover{
  background:rgba(255,255,255,0.25);
  border-color:rgba(255,255,255,0.6);
  transform:translateY(-3px);
}
/* About Section */
.about-section{
  padding:-1rem 2rem;
  background:#ffffff;
  text-align:center;
}
.section-label{
  font-size:0.9rem;
  color:var(--accent);
  margin-bottom:1rem;
  font-weight:600;
  letter-spacing:0.1em;
}
.section-title{
  font-size:2.5rem;
  color:var(--dark);
  margin-bottom:1rem;
  font-weight:600;
  letter-spacing:0.02em;
}
.section-intro{
  font-size:1.3rem;
  color:var(--muted);
  margin-bottom:3rem;
  font-weight:500;
}
.about-content{
  max-width:1100px;
  margin:0 auto 3rem;
}
.about-text p{
  color:var(--dark);
  font-size:1.1rem;
  line-height:1.8;
  margin-bottom:1.5rem;
  text-align:left;
}
.about-mission-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:2rem;
  margin:3rem 0;
}
.mission-card{
  padding:2rem;
  background:linear-gradient(135deg, #031273 0%, #020d50 100%);
  border-radius:12px;
  box-shadow:var(--shadow-md);
  border:1px solid rgba(255,215,0,0.3);
  text-align:center;
  transition:all 0.3s;
}
.mission-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-lg);
}
.mission-icon{
  width:60px;
  height:60px;
  background:linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 1.5rem;
}
.mission-icon svg{
  width:32px;
  height:32px;
  color:#031273;
}
.mission-card h3{
  font-size:1.3rem;
  color:#FFD700;
  margin-bottom:1rem;
  font-weight:600;
}
.mission-card p{
  color:#FFD700;
  font-size:1rem;
  line-height:1.7;
  text-align:left;
}
.about-statement{
  margin:3rem 0;
  padding:2rem;
  background:rgba(3,18,115,0.08);
  border-left:4px solid var(--accent);
  border-radius:8px;
}
.about-statement p{
  color:var(--dark);
  font-size:1.1rem;
  line-height:1.8;
  margin:0;
  font-weight:500;
}
.about-highlights{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:2rem;
  margin:3rem 0;
}
.highlight-item{
  padding:2rem;
  background:#f8fafc;
  border-radius:12px;
  text-align:left;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:var(--shadow-sm);
}
.highlight-item h3{
  font-size:1.3rem;
  color:var(--accent);
  margin-bottom:0.8rem;
  font-weight:600;
}
.highlight-item p{
  color:var(--dark);
  font-size:1rem;
  line-height:1.7;
}
.about-approach{
  margin-top:3rem;
  padding:2.5rem;
  background:#f8fafc;
  border-radius:12px;
  box-shadow:var(--shadow-sm);
  border:1px solid rgba(0,0,0,0.08);
}
.about-approach h3{
  font-size:1.5rem;
  color:var(--accent);
  margin-bottom:1rem;
  font-weight:600;
}
.about-approach p{
  color:var(--dark);
  font-size:1.1rem;
  line-height:1.8;
  margin-bottom:1.5rem;
}
.about-approach ul{
  list-style:none;
  padding:0;
  margin:0;
}
.about-approach ul li{
  color:var(--dark);
  font-size:1rem;
  line-height:1.7;
  margin-bottom:1rem;
  padding-left:2rem;
  position:relative;
}
.about-approach ul li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--gold);
  font-weight:700;
  font-size:1.2rem;
}
.btn-discover{
  display:inline-block;
  padding:1rem 2.5rem;
  background:var(--accent);
  color:#fff;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  font-size:0.95rem;
  transition:all 0.3s;
  letter-spacing:1.5px;
  box-shadow:var(--shadow-sm);
}
.btn-discover:hover{
  background:var(--accent-dark);
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}

/* Founder Section */
.founder-section{
  padding:-1rem 2rem;
  background:var(--light-bg);
  text-align:center;
}
.founder-content{
  max-width:1000px;
  margin:0 auto;
}
.founder-header{
  background:linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding:3rem 2rem;
  border-radius:16px;
  margin-bottom:3rem;
  box-shadow:var(--shadow-lg);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2rem;
}
.founder-image-wrapper{
  width:280px;
  height:280px;
  border-radius:50%;
  overflow:hidden;
  border:6px solid rgba(255,255,255,0.3);
  box-shadow:0 10px 40px rgba(0,0,0,0.3);
  background:#fff;
}
.founder-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.founder-info{
  color:#fff;
}
.founder-name{
  font-size:2.5rem;
  font-weight:700;
  margin-bottom:0.5rem;
  letter-spacing:0.02em;
}
.founder-title{
  font-size:1.3rem;
  margin-bottom:0.3rem;
  color:#e2e8f0;
  font-weight:500;
}
.founder-org{
  font-size:1.1rem;
  color:#cbd5e1;
  font-weight:400;
}
.founder-bio{
  text-align:left;
}
.bio-section{
  background:#fff;
  padding:2.5rem;
  border-radius:12px;
  margin-bottom:2rem;
  box-shadow:var(--shadow-sm);
  border:1px solid rgba(0,0,0,0.05);
}
.bio-section h4{
  font-size:1.5rem;
  color:var(--accent);
  margin-bottom:1.5rem;
  font-weight:600;
  border-bottom:2px solid var(--gold);
  padding-bottom:0.5rem;
  display:inline-block;
}
.bio-section p{
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.8;
  margin-bottom:1.5rem;
}
.bio-section p:last-child{
  margin-bottom:0;
}

/* Biography section styling */
.biography-section{
  background:linear-gradient(135deg, #fbfdff 0%, #f8fafc 100%);
}
.biography-section h4{
  font-size:1.6rem;
  margin-bottom:2rem;
}
.biography-section p{
  text-align:justify;
  margin-bottom:1.25rem;
}
.biography-section p:first-of-type{
  font-size:1.1rem;
}

.professional-experience{
  background:#fff;
  padding:2.5rem;
  border-radius:12px;
  box-shadow:var(--shadow-sm);
  border:1px solid rgba(0,0,0,0.05);
}
.professional-experience h4{
  font-size:1.5rem;
  color:var(--accent);
  margin-bottom:2rem;
  font-weight:600;
  border-bottom:2px solid var(--gold);
  padding-bottom:0.5rem;
  display:inline-block;
}
.experience-timeline{
  position:relative;
  padding-left:2rem;
}
.experience-timeline::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background:linear-gradient(180deg, var(--accent) 0%, var(--gold) 100%);
}
.experience-item{
  position:relative;
  margin-bottom:2.5rem;
  padding-left:2rem;
}
.experience-item:last-child{
  margin-bottom:0;
}
.experience-item::before{
  content:'';
  position:absolute;
  left:-2rem;
  top:0.3rem;
  width:12px;
  height:12px;
  background:var(--accent);
  border-radius:50%;
  border:3px solid #fff;
  box-shadow:0 0 0 3px var(--accent);
}
.experience-year{
  font-size:0.95rem;
  color:var(--accent);
  font-weight:700;
  margin-bottom:0.5rem;
  letter-spacing:0.5px;
}
.experience-details h5{
  font-size:1.2rem;
  color:var(--dark);
  margin-bottom:0.8rem;
  font-weight:600;
}
.experience-details p{
  color:var(--muted);
  font-size:1rem;
  line-height:1.7;
  margin:0;
}

/* Ambassador Section Styles */
.ambassador-section{
  padding:-1rem 2rem;
  background:linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}
.ambassador-header{
  text-align:center;
  margin-bottom:4rem;
}
.ambassador-header .section-title{
  color:var(--accent);
  margin-bottom:0.5rem;
}
.ambassador-subtitle{
  font-size:1.5rem;
  color:var(--dark);
  font-weight:600;
  margin-bottom:0.5rem;
}
.ambassador-role{
  font-size:1.1rem;
  color:var(--muted);
  max-width:700px;
  margin:0 auto;
  line-height:1.6;
}
.ambassador-content{
  max-width:1000px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:2rem;
}
.ambassador-card{
  background:#fff;
  border-radius:16px;
  padding:2.5rem;
  box-shadow:var(--shadow-md);
  border:1px solid rgba(0,0,0,0.05);
  transition:all 0.3s ease;
}
.ambassador-card:hover{
  box-shadow:var(--shadow-lg);
  transform:translateY(-2px);
}
.ambassador-card-header{
  display:flex;
  align-items:center;
  gap:1rem;
  margin-bottom:2rem;
  padding-bottom:1rem;
  border-bottom:2px solid var(--gold);
}
.card-number{
  width:40px;
  height:40px;
  background:linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:1.2rem;
  flex-shrink:0;
}
.ambassador-card-header h3{
  font-size:1.4rem;
  color:var(--dark);
  font-weight:700;
  margin:0;
}
.ambassador-subsection{
  margin-bottom:2rem;
  padding-left:1rem;
  border-left:3px solid rgba(3,18,115,0.1);
}
.ambassador-subsection:last-child{
  margin-bottom:0;
}
.ambassador-subsection h4{
  font-size:1.1rem;
  color:var(--accent);
  font-weight:600;
  margin-bottom:1rem;
}
.ambassador-subsection ul{
  list-style:none;
  padding:0;
  margin:0;
}
.ambassador-subsection ul li{
  color:var(--dark);
  font-size:1rem;
  line-height:1.7;
  margin-bottom:0.8rem;
  padding-left:1.5rem;
  position:relative;
}
.ambassador-subsection ul li::before{
  content:"•";
  position:absolute;
  left:0;
  color:var(--gold);
  font-weight:700;
  font-size:1.4rem;
  line-height:1;
}
.ambassador-subsection p{
  color:var(--muted);
  font-size:1rem;
  line-height:1.7;
  margin-bottom:1rem;
}
.council-grid{
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
  margin:1rem 0;
}
.council-item{
  background:linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color:#fff;
  padding:0.5rem 1rem;
  border-radius:20px;
  font-size:0.9rem;
  font-weight:500;
}
.council-note, .department-note{
  font-style:italic;
  color:var(--accent);
  font-weight:500;
  margin-top:1rem;
}
.department-list{
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
  margin:1rem 0;
}
.department-item{
  background:#f0f4ff;
  color:var(--accent);
  padding:0.5rem 1rem;
  border-radius:8px;
  font-size:0.9rem;
  font-weight:500;
  border:1px solid rgba(3,18,115,0.15);
}

/* Mission Report Section */
.mission-report-section{
  padding:7rem 2rem;
  background:#fff;
}
.mission-report-section .section-subtitle{
  font-size:1.3rem;
  color:var(--accent);
  font-style:italic;
  margin-bottom:1rem;
  font-weight:500;
}
.scripture-quote{
  background:var(--light-bg);
  padding:1.5rem 2rem;
  border-left:4px solid var(--gold);
  margin:2rem 0;
  border-radius:8px;
}
.scripture-quote p{
  font-style:italic;
  color:var(--dark);
  font-size:1.05rem;
  line-height:1.8;
  margin:0.5rem 0;
}
.mission-content{
  max-width:1000px;
  margin:3rem auto 0;
}
.mission-block{
  background:#fff;
  padding:2.5rem;
  border-radius:12px;
  margin-bottom:2.5rem;
  box-shadow:var(--shadow-sm);
  border:1px solid rgba(0,0,0,0.05);
}
.mission-block h3{
  font-size:1.6rem;
  color:var(--accent);
  margin-bottom:1.5rem;
  font-weight:700;
  letter-spacing:0.02em;
}
.mission-block ul{
  list-style:none;
  padding:0;
  margin:1.5rem 0;
}
.mission-block ul li{
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.8;
  margin-bottom:1rem;
  padding-left:1.5rem;
  position:relative;
}
.mission-block ul li::before{
  content:'✓';
  position:absolute;
  left:0;
  color:var(--gold);
  font-weight:700;
  font-size:1.2rem;
}
.mission-block p{
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.8;
}
.mission-block.partnership-call{
  background:linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color:#fff;
  border:none;
}
.mission-block.partnership-call h3{
  color:#fff;
}
.mission-block.partnership-call p{
  color:#e2e8f0;
}
.mission-block.partnership-call .scripture-quote{
  background:rgba(255,255,255,0.1);
  border-left-color:#fff;
}
.mission-block.partnership-call .scripture-quote p{
  color:#fff;
}
.final-scripture{
  margin-top:2rem;
  padding-top:2rem;
  border-top:2px solid rgba(255,255,255,0.2);
  text-align:center;
}
.final-scripture p{
  font-size:1.2rem;
  font-weight:600;
  color:#fff;
}

/* Ambassador Section */
.ambassador-section{
  background:linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.ambassador-contact p{
  margin:0.5rem 0;
}
.ambassador-contact a{
  color:var(--accent);
  text-decoration:none;
  transition:color 0.3s ease;
}
.ambassador-contact a:hover{
  color:var(--accent-dark);
  text-decoration:underline;
}

/* Programs Section */
.projects-section{
  padding:-1rem 2rem;
  background:var(--light-bg);
  text-align:center;
}
.projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:2.5rem;
  margin-top:4rem;
}
.project-card{
  background:#fff;
  padding:2.5rem;
  border-radius:12px;
  box-shadow:var(--shadow-sm);
  transition:all 0.3s;
  text-align:left;
  border:1px solid rgba(0,0,0,0.05);
}
.program-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
}
.project-icon{
  width:60px;
  height:60px;
  background:linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1.5rem;
}
.project-icon svg{
  width:32px;
  height:32px;
  color:#fff;
}
.project-card h3{
  font-size:1.4rem;
  color:var(--dark);
  margin-bottom:1rem;
  font-weight:600;
}
.project-card p{
  color:var(--muted);
  font-size:1rem;
  line-height:1.7;
  margin-bottom:1.5rem;
}
.project-link{
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
  font-size:0.95rem;
  transition:all 0.2s;
}
.project-link:hover{
  color:var(--accent-dark);
  text-decoration:underline;
}

/* Impact Section */
.impact-section{
  padding:7rem 2rem;
  background:linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  text-align:center;
  color:#fff;
}
.section-title-white{
  font-size:2.5rem;
  color:#fff;
  margin-bottom:1.5rem;
  font-weight:600;
  letter-spacing:0.02em;
}
.impact-intro{
  font-size:1.2rem;
  color:#e2e8f0;
  margin-bottom:4rem;
  font-weight:400;
}
.impact-stats{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:3rem;
  margin-bottom:4rem;
}
.stat-item{
  padding:2rem;
}
.stat-number{
  font-size:3.5rem;
  font-weight:700;
  color:#fff;
  margin-bottom:0.5rem;
}
.stat-label{
  font-size:1.1rem;
  color:#cbd5e1;
  font-weight:400;
}
.btn-impact{
  display:inline-block;
  padding:1.1rem 3rem;
  background:#fff;
  color:var(--accent);
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  font-size:1rem;
  transition:all 0.3s;
  letter-spacing:1.5px;
  box-shadow:0 8px 24px rgba(0,0,0,0.2);
}
.btn-impact:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 36px rgba(0,0,0,0.3);
}

/* Enrollment Section */
.enrollment-section{
  padding:6rem 2rem;
  background:#fff;
}
.enrollment-content{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:4rem;
  align-items:center;
  max-width:1000px;
  margin:0 auto;
}
.enrollment-text h2{
  font-size:2.2rem;
  color:var(--dark);
  margin-bottom:1.5rem;
  font-weight:600;
  letter-spacing:0.02em;
}
.enrollment-text p{
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.7;
  margin-bottom:1rem;
}
.enrollment-cta{
  text-align:center;
  display:flex;
  justify-content:center;
  align-items:center;
}
.btn-enroll{
  display:inline-block;
  padding:1.2rem 3rem;
  background:linear-gradient(135deg, var(--gold) 0%, #b8862e 100%);
  color:#fff;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  font-size:1.1rem;
  transition:all 0.3s;
  letter-spacing:1.5px;
  box-shadow:0 8px 24px rgba(212,162,73,0.4);
  max-width:400px;
  text-align:center;
}
.btn-enroll:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 36px rgba(212,162,73,0.5);
}

/* Team Section */
.team-section{
  padding:7rem 2rem;
  background:#fff;
  text-align:center;
}
.team-section h2{
  font-size:2.5rem;
  color:var(--dark);
  margin-bottom:1rem;
  font-weight:700;
  letter-spacing:0.02em;
}
.team-section .section-subtitle{
  color:var(--muted);
  font-size:1.1rem;
  margin-bottom:4rem;
}

/* Team Outcomes Grid */
.team-outcomes{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:2.5rem;
  max-width:1200px;
  margin:4rem auto;
}
.outcome-card{
  padding:2.5rem;
  background:#fff;
  border-radius:16px;
  border:2px solid rgba(30,64,175,0.1);
  transition:all 0.3s;
  text-align:left;
}
.outcome-card:hover{
  transform:translateY(-5px);
  box-shadow:0 16px 40px rgba(30,64,175,0.15);
  border-color:var(--accent);
}
.outcome-icon{
  width:70px;
  height:70px;
  background:linear-gradient(135deg,var(--accent),#1e3a8a);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1.5rem;
}
.outcome-icon svg{
  width:35px;
  height:35px;
  stroke:#fff;
}
.outcome-card h3{
  font-size:1.5rem;
  color:var(--dark);
  margin-bottom:1rem;
  font-weight:700;
}
.outcome-list{
  list-style:none;
  padding:0;
  margin:0;
}
.outcome-list li{
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.7;
  margin-bottom:1rem;
  padding-left:1.5rem;
  position:relative;
}
.outcome-list li:before{
  content:'✓';
  position:absolute;
  left:0;
  color:var(--gold);
  font-weight:700;
  font-size:1.2rem;
}

/* Team Statement */
.team-statement{
  max-width:900px;
  margin:3rem auto;
  padding:2rem 2.5rem;
  background:linear-gradient(135deg,var(--light-bg),#fff);
  border-left:5px solid var(--gold);
  border-radius:12px;
  box-shadow:0 4px 20px rgba(0,0,0,0.05);
}
.team-statement p{
  color:var(--dark);
  font-size:1.15rem;
  line-height:1.8;
  font-style:italic;
  margin:0;
}

/* Ambassadors Section */
.ambassadors-title{
  margin-top:5rem !important;
  margin-bottom:3rem !important;
}
.ambassadors-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
  max-width:1200px;
  margin:0 auto 4rem;
}
.ambassador-card{
  padding:2rem;
  background:#fff;
  border-radius:12px;
  border:2px solid rgba(30,64,175,0.08);
  transition:all 0.3s;
  text-align:left;
  position:relative;
}
.ambassador-card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 30px rgba(30,64,175,0.12);
  border-color:var(--accent);
}
.ambassador-number{
  position:absolute;
  top:1.5rem;
  right:1.5rem;
  width:40px;
  height:40px;
  background:linear-gradient(135deg,var(--accent),#1e3a8a);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:1.1rem;
}
.ambassador-card h4{
  font-size:1.2rem;
  color:var(--dark);
  margin-bottom:0.8rem;
  font-weight:700;
  padding-right:3rem;
}
.scripture-ref{
  color:var(--gold);
  font-size:0.9rem;
  font-weight:600;
  margin-bottom:0.6rem;
  font-style:italic;
}
.ambassador-desc{
  color:var(--accent);
  font-size:0.95rem;
  margin-bottom:0.8rem;
  font-style:italic;
  line-height:1.6;
}
.ambassador-card p:last-child{
  color:var(--muted);
  font-size:1rem;
  line-height:1.7;
  margin:0;
}

/* Team Closing Statement */
.team-closing-statement{
  max-width:900px;
  margin:3rem auto 0;
  padding:2.5rem 3rem;
  background:linear-gradient(135deg,var(--accent),#1e3a8a);
  border-radius:16px;
  box-shadow:0 10px 40px rgba(30,64,175,0.2);
}
.team-closing-statement p{
  color:#fff;
  font-size:1.2rem;
  line-height:1.8;
  margin:0;
  text-align:center;
  font-weight:500;
}

/* Legacy Team Grid (if needed) */
.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2.5rem;
  max-width:1200px;
  margin:0 auto;
}
.team-card{
  padding:2.5rem 1.5rem;
  background:#fff;
  border-radius:16px;
  border:2px solid rgba(30,64,175,0.1);
  transition:all 0.3s;
  text-align:center;
}
.team-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 40px rgba(30,64,175,0.15);
  border-color:var(--accent);
}
.team-icon{
  width:80px;
  height:80px;
  background:linear-gradient(135deg,var(--accent),#1e3a8a);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 1.5rem;
}
.team-icon svg{
  width:40px;
  height:40px;
  fill:#fff;
}
.team-card h3{
  font-size:1.3rem;
  color:var(--dark);
  margin-bottom:0.5rem;
  font-weight:600;
}
.team-card p{
  color:var(--gold);
  font-weight:500;
  font-size:1rem;
}

/* Live Stream Section */
.livestream-section{
  padding:7rem 2rem;
  background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%);
  text-align:center;
}
.livestream-content{
  max-width:600px;
  margin:0 auto;
}
.livestream-section h2{
  font-size:2.5rem;
  color:#fff;
  margin-bottom:2rem;
  font-weight:700;
  letter-spacing:0.02em;
}
.livestream-content > p{
  color:rgba(255,255,255,0.7);
  font-size:1.1rem;
  margin-bottom:2rem;
  line-height:1.6;
}

/* Payment / Donation Section */
.payment-section{
  padding:6rem 2rem;
  background:var(--light-bg);
  text-align:center;
}
.payment-block{
  max-width:1000px;
  margin:2.5rem auto 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  align-items:start;
}
.pay-logos{
  display:flex;
  align-items:center;
  justify-content:center;
}
.pay-logos-img{
  max-width:320px;
  width:100%;
  height:auto;
  display:block;
  filter:contrast(1.02);
}
.bank-details{
  background:#fff;
  border-radius:12px;
  padding:1.5rem 1.8rem;
  border:1px solid rgba(30,64,175,0.06);
  box-shadow:0 10px 30px rgba(16,24,40,0.04);
  text-align:left;
}
.bank-title{
  font-size:1.4rem;
  color:var(--dark);
  margin-bottom:0.8rem;
  font-weight:700;
}
.bank-grid{
  display:flex;
  flex-direction:column;
  gap:0.8rem;
}
.bank-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0.9rem 0.6rem;
  border-radius:8px;
  background:linear-gradient(180deg, rgba(250,250,255,1), rgba(245,247,250,1));
  border:1px solid rgba(15,23,42,0.03);
}
.bank-label{
  color:var(--muted);
  font-weight:600;
  font-size:0.95rem;
  max-width:55%;
}
.bank-value{
  color:var(--dark);
  font-weight:700;
  text-align:right;
  font-size:0.98rem;
}
.payment-note{
  margin-top:1rem;
  color:var(--muted);
  font-size:0.95rem;
}

@media (max-width:1024px){
  .payment-block{grid-template-columns:1fr;}
  .pay-logos{margin-bottom:1rem}
}

.project-region-grid{
  margin-top:3rem;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:1.5rem;
}
.region-card{
  position:relative;
  overflow:hidden;
  border-radius:16px;
  padding:2.5rem 2rem;
  color:#fff;
  background:linear-gradient(135deg, rgba(30,64,175,0.95), rgba(76,29,149,0.9));
  box-shadow:var(--shadow-lg);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration:none;
}
.region-card::after{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(255,255,255,0.35), transparent 55%);
  opacity:0.6;
  pointer-events:none;
}
.region-card p,
.region-card span{
  position:relative;
  z-index:1;
}
.region-card .region-label{
  font-size:1.8rem;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  margin-bottom:0.75rem;
  display:block;
}
.region-card .region-link{
  margin-top:1.5rem;
  display:inline-flex;
  align-items:center;
  gap:0.4rem;
  font-weight:600;
}
.region-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
}
.region-card-pakistan{
  background:linear-gradient(135deg, rgba(22,101,52,0.95), rgba(15,118,110,0.9));
}
.region-card-us{
  background:linear-gradient(135deg, rgba(37,99,235,0.95), rgba(168,85,247,0.9));
}
.region-card-africa{
  background:linear-gradient(135deg, rgba(217,119,6,0.95), rgba(185,28,28,0.9));
}

.project-hero{
  padding:6rem 0 2rem;
  background:var(--light-bg);
}
.project-highlights,
.project-gallery,
.project-next-steps{
  padding:3rem 0;
}
.project-highlights-inner,
.project-next-steps-inner{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:2rem;
}
.project-highlight-card,
.project-next-card{
  background:#fff;
  border-radius:16px;
  padding:2.5rem;
  box-shadow:var(--shadow-lg);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.project-highlight-card:hover,
.project-next-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}
.project-highlight-card h3,
.project-next-card h3{
  font-size:1.5rem;
  margin-bottom:1rem;
}
.project-highlight-card ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:0.75rem;
}
.project-highlight-card li{
  display:flex;
  gap:0.75rem;
  align-items:flex-start;
  color:var(--muted);
}
.project-highlight-card li::before{
  content:'•';
  color:var(--accent);
  font-weight:700;
  margin-top:0.1rem;
}
.project-next-card p{
  color:var(--muted);
  margin-bottom:1.5rem;
}
.project-gallery{
  background:#fff;
}
.gallery-title{
  font-size:1.8rem;
  margin-bottom:1.5rem;
  font-weight:600;
}
.slider{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  box-shadow:var(--shadow-lg);
  background:var(--light-bg);
}
.slider-track{
  display:flex;
  align-items:center;
  transition:transform 0.45s ease;
  transform:translateX(0);
}
.slide{
  min-width:100%;
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:1.5rem;
  background:#fff;
}
.slide img{
  max-width:100%;
  max-height:520px;
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:12px;
  box-shadow:var(--shadow-md);
  background-color:#f8fafc;
}
.slide.placeholder{
  background:linear-gradient(135deg, rgba(30,64,175,0.08), rgba(14,116,144,0.08));
  padding:2rem;
}
.placeholder-image{
  border:2px dashed rgba(30,64,175,0.4);
  border-radius:16px;
  padding:3rem 2.5rem;
  text-align:center;
  font-weight:600;
  font-size:1.1rem;
  color:var(--muted);
  background-color:rgba(255,255,255,0.85);
  max-width:480px;
}
.slider-control{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,0.85);
  border:none;
  width:48px;
  height:48px;
  border-radius:50%;
  font-size:1.8rem;
  color:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:var(--shadow-md);
  transition:background 0.2s ease, transform 0.2s ease;
}
.slider-control:hover{
  background:#fff;
  transform:translateY(-50%) scale(1.05);
}
.slider-control.prev{
  left:1rem;
}
.slider-control.next{
  right:1rem;
}
.slider-dots{
  display:flex;
  gap:0.5rem;
  justify-content:center;
  padding:1rem 0 1.5rem;
}
.slider-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  border:none;
  background:rgba(30,64,175,0.25);
  cursor:pointer;
  transition:transform 0.2s ease, background 0.2s ease;
}
.slider-dot.active{
  background:var(--accent);
  transform:scale(1.2);
}
.project-next-card .btn-primary,
.project-next-card .btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

@media (max-width:992px){
  .project-highlights-inner,
  .project-next-steps-inner{
    grid-template-columns:1fr;
  }
  .slider-control{
    width:44px;
    height:44px;
  }
}

@media (max-width:640px){
  .payment-section{padding:4rem 1rem}
  .bank-row{padding:0.8rem}
  .pay-logos-img{max-width:260px}
}

/* Improved typography and CTA for payments */
.give-title{
  font-size:2.25rem;
  letter-spacing:0.01em;
  color:var(--accent-dark);
}
.bank-cta{
  display:flex;
  flex-direction:column;
  gap:0.5rem;
  align-items:flex-start;
  margin-bottom:0.8rem;
}
.btn-donate{
  display:inline-block;
  background:linear-gradient(135deg,var(--gold) 0%, #b8862e 100%);
  color:#0f172a;
  padding:0.85rem 1.25rem;
  border-radius:10px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 10px 28px rgba(212,162,73,0.18);
  transition:all 0.18s;
}
.btn-donate:hover{transform:translateY(-3px)}
.small-muted{font-size:0.9rem;color:var(--muted);margin:0}

/* Definition list layout for bank details */
.bank-dl{margin:0;padding:0;display:flex;flex-direction:column;gap:0.6rem}
.bank-dl-row{display:flex;justify-content:space-between;align-items:center;padding:0.7rem 0;border-bottom:1px solid rgba(15,23,42,0.03)}
.bank-dl-row dt{font-weight:600;color:var(--muted);font-size:0.95rem}
.bank-dl-row dd{margin:0;font-weight:700;color:var(--dark);text-align:right}

@media (max-width:768px){
  .give-title{font-size:1.8rem}
  .btn-donate{padding:0.75rem 1rem}
  .bank-dl-row{flex-direction:column;align-items:flex-start;gap:0.25rem}
  .bank-dl-row dd{text-align:left}
}

/* Vertical payment layout (stacked cards like reference) */
.payment-vertical{max-width:720px;margin:2rem auto 0;display:flex;flex-direction:column;gap:1.5rem;align-items:center}
.payment-vertical .centered{display:flex;justify-content:center;width:100%}
.bank-header{width:100%;text-align:center;margin-top:0.4rem}
.bank-account-title{color:var(--accent);font-size:1.5rem;font-weight:700;margin:0 0 0.5rem 0}
.bank-org-name{font-size:1.6rem;margin:0.8rem 0 1rem;color:var(--dark);font-weight:700}
.bank-cards{width:100%;display:flex;flex-direction:column;gap:1rem;padding:0 1rem}
.bank-card{background:linear-gradient(180deg,#fbfdff,#f7fafc);padding:1rem 1.2rem;border-radius:10px;display:flex;justify-content:space-between;align-items:center;border:1px solid rgba(15,23,42,0.03)}
.bank-label{color:var(--muted);font-weight:600}
.bank-value-group{display:flex;align-items:center;gap:0.6rem}
.bank-value{color:var(--dark);font-weight:700}

/* Copy button styles */
.copy-btn{
  background:rgba(30,64,175,0.08);
  border:none;
  border-radius:6px;
  padding:0.5rem;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.2s;
  width:36px;
  height:36px;
  flex-shrink:0;
}
.copy-btn svg{
  width:18px;
  height:18px;
  stroke:var(--accent);
}
.copy-btn:hover{
  background:rgba(30,64,175,0.15);
  transform:scale(1.05);
}
.copy-btn.copied{
  background:rgba(34,197,94,0.15);
}
.copy-btn.copied svg{
  stroke:#22c55e;
}

@media (max-width:480px){
  .bank-org-name{font-size:1.3rem}
  .bank-card{padding:0.9rem;flex-direction:column;align-items:flex-start;gap:0.6rem}
  .bank-value-group{width:100%;justify-content:space-between}
  .bank-cards{padding:0 0.5rem}
  .copy-btn{width:32px;height:32px;padding:0.4rem}
}
.livestream-icon{
  width:120px;
  height:120px;
  background:rgba(255,255,255,0.1);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 2rem;
  border:3px solid rgba(255,255,255,0.2);
  transition:all 0.3s;
}
.livestream-icon:hover{
  background:rgba(255,255,255,0.15);
  border-color:var(--gold);
  transform:scale(1.05);
}
.livestream-icon svg{
  width:50px;
  height:50px;
  fill:#fff;
}
.livestream-status{
  color:rgba(255,255,255,0.8);
  font-size:1.1rem;
  margin-bottom:1rem;
}
.status-badge{
  display:inline-block;
  padding:0.8rem 2rem;
  background:var(--gold);
  color:#fff;
  border-radius:50px;
  font-weight:600;
  font-size:1.1rem;
  letter-spacing:1px;
  box-shadow:0 8px 24px rgba(212,162,73,0.3);
  margin-bottom:1.5rem;
}
.status-message{
  color:rgba(255,255,255,0.7);
  font-size:1rem;
  line-height:1.7;
}

/* Contact Section */
.contact-section{
  background:var(--light-bg);
  padding:7rem 2rem;
  text-align:center;
}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:start;
  margin-top:4rem;
  text-align:left;
}
.contact-info-block h3{
  font-size:1.8rem;
  font-weight:600;
  color:var(--dark);
  margin-bottom:1rem;
}
.contact-info-block p{
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.7;
  margin-bottom:2rem;
}
.contact-details{
  display:flex;
  flex-direction:column;
  gap:1.5rem;
}
.contact-item{
  display:flex;
  gap:1.2rem;
  align-items:start;
  padding:1.5rem;
  background:#fff;
  border-radius:12px;
  border:1px solid rgba(0,0,0,0.06);
  transition:all 0.3s;
}
.contact-item:hover{
  box-shadow:var(--shadow-md);
  transform:translateY(-2px);
}
.icon{
  width:28px;
  height:28px;
  color:var(--accent);
  flex-shrink:0;
  margin-top:0.2rem;
}
.contact-item strong{
  display:block;
  font-size:0.85rem;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--muted);
  margin-bottom:0.4rem;
  font-weight:600;
}
.contact-item a{
  color:var(--dark);
  text-decoration:none;
  font-size:1.05rem;
  font-weight:500;
}
.contact-item a:hover{
  color:var(--accent);
}
.contact-form-block h3{
  font-size:1.8rem;
  font-weight:600;
  color:var(--dark);
  margin-bottom:1.5rem;
}
.contact-form{
  display:flex;
  flex-direction:column;
  gap:1.2rem;
}
.contact-form input,
.contact-form textarea{
  padding:1rem;
  border:1px solid rgba(0,0,0,0.1);
  border-radius:8px;
  font-family:inherit;
  font-size:1rem;
  transition:all 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(30,64,175,0.1);
}
.btn-submit{
  padding:1rem 2rem;
  background:var(--accent);
  color:#fff;
  border:none;
  border-radius:8px;
  font-weight:600;
  font-size:1rem;
  letter-spacing:1px;
  cursor:pointer;
  transition:all 0.3s;
}
.btn-submit:hover{
  background:var(--accent-dark);
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}

/* Footer - Isaac TV Style */
.site-footer{
  background:var(--dark);
  color:#94a3b8;
  padding:4rem 0 0;
}
.footer-main{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:3rem;
  padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-about{
  max-width:350px;
}
.footer-logo{
  width:80px;
  height:80px;
  object-fit:contain;
  border-radius:12px;
  margin-bottom:1.5rem;
}
.footer-about h3{
  color:#fff;
  font-size:1.4rem;
  margin-bottom:1rem;
  letter-spacing:2px;
  font-weight:700;
}
.footer-about p{
  color:#94a3b8;
  font-size:0.95rem;
  line-height:1.7;
}
.footer-column h4{
  color:#fff;
  font-size:1.1rem;
  margin-bottom:1.5rem;
  font-weight:600;
  letter-spacing:0.5px;
}
.footer-column ul{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-column ul li{
  margin-bottom:1rem;
}
.footer-column a{
  color:#94a3b8;
  text-decoration:none;
  font-size:0.95rem;
  transition:all 0.2s;
}
.footer-column a:hover{
  color:#fff;
  padding-left:5px;
}
.footer-contact-col h4{
  color:#fff;
  font-size:1.1rem;
  margin-bottom:1.5rem;
  font-weight:600;
  letter-spacing:0.5px;
}
.footer-contact-item{
  display:flex;
  align-items:start;
  gap:1rem;
  margin-bottom:1.2rem;
  color:#94a3b8;
  font-size:0.95rem;
}
.footer-contact-item svg{
  width:20px;
  height:20px;
  flex-shrink:0;
  margin-top:2px;
  fill:none
}
.footer-contact-item a{
  color:#94a3b8;
  text-decoration:none;
  transition:color 0.2s;
}
.footer-contact-item a:hover{
  color:#fff;
}
.footer-social{
  display:flex;
  gap:1rem;
  margin-top:1.5rem;
}
.footer-social a{
  width:40px;
  height:40px;
  background:rgba(255,255,255,0.1);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.3s;
}
.footer-social a:hover{
  background:var(--accent);
  transform:translateY(-3px);
}
.footer-social svg{
  width:20px;
  height:20px;
  fill:#fff;
}
.footer-bottom{
  padding:2rem 0;
  text-align:center;
}
.footer-bottom p{
  color:#64748b;
  font-size:0.9rem;
}

/* Disable Hover Transforms on Touch Devices */
.touch-device .program-card:hover{
  transform:none;
}
.touch-device .btn-primary:hover{
  transform:none;
}
.touch-device .btn-secondary:hover{
  transform:none;
}
.touch-device .btn-discover:hover{
  transform:none;
}
.touch-device .btn-impact:hover{
  transform:none;
}
.touch-device .btn-enroll:hover{
  transform:none;
}
.touch-device .team-card:hover{
  transform:none;
}
.touch-device .outcome-card:hover{
  transform:none;
}
.touch-device .ambassador-card:hover{
  transform:none;
}
.touch-device .livestream-icon:hover{
  transform:none;
}

/* Responsive Styles */
@media (max-width:1024px){
  .footer-main{
    grid-template-columns:1fr 1fr;
    gap:2.5rem;
  }
  .enrollment-content{
    grid-template-columns:1fr;
    gap:3rem;
  }
  .team-grid{
    grid-template-columns:repeat(2,1fr);
    gap:2rem;
  }
  .team-outcomes{
    grid-template-columns:1fr;
    gap:2rem;
  }
  .ambassadors-grid{
    grid-template-columns:repeat(2,1fr);
    gap:1.8rem;
  }
}

@media (max-width:768px){
  .container{padding:0 1.5rem}
  
  .nav{
    gap:0.8rem;
  }
  .nav a{
    font-size:0.85rem;
    padding:0.5rem 0.9rem;
  }
  
  .hero-content{padding:4rem 1.5rem}
  .hero-logo-badge{width:120px;height:120px}
  .hero-title{font-size:2rem}
  .hero-subtitle{font-size:1.2rem}
  .hero-tagline{font-size:1rem}
  
  .section-title{font-size:1.8rem}
  .section-intro{font-size:1.1rem}
  
  .about-section,
  .projects-section,
  .impact-section,
  .contact-section,
  .team-section,
  .livestream-section,
  .founder-section{
    padding:-1rem 1.5rem;
  }
  
  .about-mission-grid{
    grid-template-columns:1fr;
    gap:1.5rem;
  }
  
  .about-highlights{
    grid-template-columns:1fr;
    gap:1.5rem;
  }
  
  .about-approach{
    padding:1.5rem;
  }
  
  .founder-header{
    padding:2rem 1.5rem;
  }
  
  .founder-image-wrapper{
    width:220px;
    height:220px;
    border:5px solid rgba(255,255,255,0.3);
  }
  
  .founder-name{
    font-size:2rem;
  }
  
  .bio-section,
  .professional-experience{
    padding:1.5rem;
  }
  
  /* Ambassador Section Responsive */
  .ambassador-section{
    padding:3rem 1.5rem;
  }
  .ambassador-header .section-title{
    font-size:1.6rem;
  }
  .ambassador-subtitle{
    font-size:1.2rem;
  }
  .ambassador-card{
    padding:1.5rem;
  }
  .ambassador-card-header h3{
    font-size:1.2rem;
  }
  .card-number{
    width:35px;
    height:35px;
    font-size:1rem;
  }
  .council-grid, .department-list{
    gap:0.5rem;
  }
  .council-item, .department-item{
    font-size:0.85rem;
    padding:0.4rem 0.8rem;
  }
  
  .projects-grid{
    grid-template-columns:1fr;
    gap:2rem;
  }
  
  .team-grid{
    grid-template-columns:1fr;
    gap:2rem;
  }
  
  .team-outcomes{
    grid-template-columns:1fr;
    gap:2rem;
  }
  
  .outcome-card{
    padding:2rem;
  }
  
  .ambassadors-grid{
    grid-template-columns:1fr;
    gap:1.5rem;
  }
  
  .ambassador-card{
    padding:1.8rem;
  }
  
  .team-statement{
    padding:1.8rem 2rem;
  }
  
  .team-closing-statement{
    padding:2rem;
  }
  
  .impact-stats{
    grid-template-columns:repeat(2, 1fr);
    gap:2rem;
  }
  
  .contact-grid{
    grid-template-columns:1fr;
    gap:3rem;
  }
  
  .footer-main{
    grid-template-columns:1fr;
    gap:2rem;
  }
  
  .enrollment-text h2{
    font-size:1.6rem;
  }
  
  .team-section h2,
  .livestream-section h2{
    font-size:2rem;
  }
}

@media (max-width:640px){
  .container{padding:0 1rem}
  
  .header-inner{
    padding:0.8rem 0;
    flex-wrap:nowrap;
    gap:1rem;
    justify-content:space-between;
  }
  .brand{gap:0.7rem;flex:1}
  .logo{width:50px;height:50px}
  .brand-text h1{font-size:0.95rem;letter-spacing:1px}
  .brand-text .tag{font-size:0.7rem}
  
  /* Hide desktop nav on mobile */
  .desktop-nav{
    display:none !important;
  }
  
  /* Show mobile menu toggle on mobile */
  .mobile-menu-toggle{
    display:flex !important;
  }
  
  .hero{min-height:75vh}
  .hero-content{padding:3rem 1rem}
  .hero-logo-badge{width:100px;height:100px}
  .hero-title{font-size:2rem;letter-spacing:0.05em;line-height:1.3;font-weight:700}
  .hero-subtitle{font-size:1.1rem;line-height:1.4;letter-spacing:0.05em}
  .hero-tagline{font-size:0.92rem;margin-bottom:2rem;line-height:1.6;padding:0 0.5rem}
  .hero-cta{
    flex-direction:column;
    gap:1rem;
    width:100%;
  }
  .btn-primary,
  .btn-secondary{
    padding:1rem 2rem;
    font-size:0.9rem;
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    letter-spacing:0.5px;
  }
  
  .section-label{font-size:0.75rem;letter-spacing:0.1em;line-height:1.5;font-weight:600}
  .section-title{font-size:1.5rem;letter-spacing:0.02em;line-height:1.4;padding:0 0.5rem;font-weight:600}
  .section-intro{font-size:0.95rem;line-height:1.6;padding:0 0.5rem}
  
  .about-section,
  .projects-section,
  .impact-section,
  .contact-section,
  .team-section,
  .livestream-section,
  .founder-section{
    padding:4rem 1rem;
  }

  .project-region-grid{
    grid-template-columns:1fr;
  }
  .project-highlight-card,
  .project-next-card{
    padding:2rem;
  }
  .slider{
    border-radius:14px;
  }
  .slide{
    min-height:220px;
  }
  .placeholder-image{
    padding:2rem 1.5rem;
    font-size:1rem;
  }
  
  .about-content{
    max-width:100%;
  }
  
  .founder-header{
    padding:2rem 1rem;
    margin-bottom:2rem;
    gap:1.5rem;
  }
  
  .founder-image-wrapper{
    width:180px;
    height:180px;
    border:4px solid rgba(255,255,255,0.3);
  }
  
  .founder-name{
    font-size:1.8rem;
  }
  
  .founder-title{
    font-size:1.1rem;
  }
  
  .founder-org{
    font-size:1rem;
  }
  
  .bio-section,
  .professional-experience{
    padding:1.5rem;
    margin-bottom:1.5rem;
  }
  
  .bio-section h4,
  .professional-experience h4{
    font-size:1.3rem;
  }
  
  .bio-section p{
    font-size:1rem;
  }
  
  .mission-report-section{
    padding:4rem 1.5rem;
  }
  
  .mission-report-section .section-subtitle{
    font-size:1.1rem;
  }
  
  .mission-block{
    padding:1.5rem;
    margin-bottom:1.5rem;
  }
  
  .mission-block h3{
    font-size:1.3rem;
  }
  
  .mission-block ul li,
  .mission-block p{
    font-size:1rem;
  }
  
  .scripture-quote{
    padding:1rem 1.5rem;
  }
  
  .scripture-quote p{
    font-size:0.95rem;
  }
  
  .final-scripture p{
    font-size:1.05rem;
  }
  
  .experience-timeline{
    padding-left:1.5rem;
  }
  
  .experience-item{
    padding-left:1.5rem;
    margin-bottom:2rem;
  }
  
  .experience-year{
    font-size:0.9rem;
  }
  
  .experience-details h5{
    font-size:1.1rem;
  }
  
  .experience-details p{
    font-size:0.95rem;
  }
  
  .outcome-card h3{
    font-size:1.3rem;
  }
  
  .outcome-list li{
    font-size:0.95rem;
  }
  
  .ambassador-card h4{
    font-size:1.1rem;
    padding-right:3.5rem;
  }
  
  .ambassador-number{
    width:35px;
    height:35px;
    font-size:1rem;
    top:1.2rem;
    right:1.2rem;
  }
  
  .team-statement{
    padding:1.5rem;
  }
  
  .team-statement p{
    font-size:1.05rem;
  }
  
  .team-closing-statement{
    padding:1.8rem 1.5rem;
  }
  
  .team-closing-statement p{
    font-size:1.05rem;
  }
  
  .about-text p{
    font-size:1rem;
    text-align:left;
  }
  
  .about-mission-grid{
    grid-template-columns:1fr;
    gap:1.5rem;
  }
  
  .mission-card{
    padding:1.5rem;
  }
  
  .mission-card p{
    text-align:center;
  }
  
  .about-statement{
    padding:1.5rem;
    margin:2rem 0;
  }
  
  .about-statement p{
    font-size:1rem;
  }
  
  .about-highlights{
    grid-template-columns:1fr;
    gap:1.5rem;
  }
  
  .highlight-item{
    padding:1.5rem;
  }
  
  .highlight-item h3{
    font-size:1.2rem;
  }
  
  .highlight-item p{
    font-size:0.95rem;
  }
  
  .about-approach{
    padding:1.5rem;
    margin-top:2rem;
  }
  
  .about-approach h3{
    font-size:1.3rem;
  }
  
  .about-approach p{
    font-size:1rem;
  }
  
  .about-approach ul li{
    font-size:0.95rem;
    padding-left:1.5rem;
  }
  
  .team-section h2{
    font-size:1.5rem;
  }
  .team-section .section-subtitle{
    font-size:0.95rem;
    margin-bottom:2.5rem;
  }
  .team-grid{
    grid-template-columns:1fr;
    gap:1.5rem;
  }
  .team-card{
    padding:2rem 1rem;
  }
  .team-card h3{
    font-size:1.15rem;
  }
  
  .livestream-section h2{
    font-size:1.5rem;
  }
  .livestream-icon{
    width:100px;
    height:100px;
  }
  .livestream-icon svg{
    width:40px;
    height:40px;
  }
  .livestream-status{
    font-size:0.95rem;
  }
  .status-badge{
    padding:0.7rem 1.5rem;
    font-size:0.95rem;
  }
  
  .program-card{
    padding:1.8rem;
  }
  .program-card h3{
    font-size:1.25rem;
    line-height:1.4;
  }
  .program-card p{
    font-size:0.95rem;
    line-height:1.6;
  }
  
  .impact-stats{
    grid-template-columns:1fr;
    gap:2rem;
  }
  .stat-number{font-size:2.5rem}
  .stat-label{font-size:0.95rem;line-height:1.4}
  
  .section-title-white{
    font-size:1.6rem;
    letter-spacing:0.02em;
    line-height:1.4;
    padding:0 0.5rem;
    font-weight:600;
  }
  
  .enrollment-content{
    grid-template-columns:1fr;
    gap:2rem;
  }
  
  .enrollment-text h2{
    font-size:1.4rem;
    letter-spacing:0.02em;
    line-height:1.4;
    font-weight:600;
  }
  .enrollment-text p{
    font-size:0.95rem;
    line-height:1.6;
  }
  
  .enrollment-cta{
    width:100%;
    padding:0 1rem;
  }
  
  .btn-discover,
  .btn-impact,
  .btn-enroll{
    padding:1rem 2rem;
    font-size:0.9rem;
    letter-spacing:1px;
    width:100%;
    max-width:100%;
    box-sizing:border-box;
  }
  
  .contact-info-block h3,
  .contact-form-block h3{
    font-size:1.3rem;
    line-height:1.4;
  }
  
  .contact-form input,
  .contact-form textarea{
    font-size:0.95rem;
    padding:0.9rem;
  }
  
  .btn-submit{
    padding:1rem;
    font-size:0.95rem;
    width:100%;
  }
}

/* ================================
   NEW DONATION PAGE DESIGN
   ================================ */

/* Hero Banner with Founder Image */
.donation-hero{
  min-height:500px;
  background:linear-gradient(135deg,#2b5db8 0%,#1e40af 50%,#2952a3 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  padding:4rem 2rem;
}
.donation-hero-content{
  text-align:center;
  color:#fff;
  z-index:2;
  max-width:800px;
}
.founder-image-circle{
  width:280px;
  height:280px;
  margin:0 auto 2rem;
  border-radius:50%;
  overflow:hidden;
  border:8px solid #fff;
  box-shadow:0 10px 40px rgba(0,0,0,0.2);
}
.founder-image-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.donation-hero h1{
  font-size:3.5rem;
  font-weight:700;
  margin:0 0 1rem 0;
  letter-spacing:0.01em;
  color:#fff;
}
.founder-title{
  font-size:1.5rem;
  font-weight:400;
  margin:0 0 0.5rem 0;
  color:rgba(255,255,255,0.95);
  letter-spacing:0.02em;
}
.founder-org{
  font-size:1.3rem;
  font-weight:300;
  margin:0;
  color:rgba(255,255,255,0.9);
  letter-spacing:0.01em;
}
.breadcrumb{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0.5rem;
  font-size:1rem;
  color:rgba(255,255,255,0.9);
}
.breadcrumb a{
  color:#fff;
  text-decoration:none;
  transition:color 0.2s;
}
.breadcrumb a:hover{
  color:var(--gold);
}
.breadcrumb span{
  color:rgba(255,255,255,0.7);
}

/* Main Donation Content - Two Column Layout */
.donation-content{
  padding:5rem 2rem;
  background:#fff;
}
.donation-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:4rem;
  max-width:1200px;
  margin:0 auto;
  align-items:start;
}

/* Left Column Styles */
.donation-left{
  padding-right:2rem;
}
.donation-left h2{
  font-size:2.5rem;
  color:var(--dark);
  margin-bottom:1rem;
  line-height:1.2;
  font-weight:700;
}
.donation-message{
  color:#666;
  font-size:1.05rem;
  line-height:1.7;
  margin-bottom:1rem;
}
.bible-verse{
  color:var(--dark);
  font-weight:700;
  font-size:1.05rem;
  margin-bottom:2rem;
}
.payment-online-title{
  color:var(--accent);
  font-size:1.2rem;
  margin-bottom:1rem;
  font-weight:600;
}
.payment-logos{
  margin-top:1rem;
}
.payment-logos-img{
  max-width:200px;
  width:100%;
  height:auto;
}

/* Right Column - Bank Details Card */
.donation-right{
  background:#f8f9fa;
  padding:0;
}
.bank-details-card{
  background:#fff;
  border-radius:8px;
  padding:2rem 2.5rem;
  box-shadow:0 2px 15px rgba(0,0,0,0.08);
}
.bank-title-header{
  color:#007bff;
  font-size:1.1rem;
  font-weight:700;
  margin:0 0 0.5rem 0;
  text-align:left;
}
.bank-org-name-main{
  font-size:1.5rem;
  font-weight:700;
  color:var(--dark);
  margin:0 0 2rem 0;
  text-align:left;
  line-height:1.3;
}
.bank-detail-row{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:1rem;
  padding:0.9rem 0;
  border-bottom:1px solid #e5e5e5;
  align-items:center;
}
.bank-detail-row:last-child{
  border-bottom:none;
}
.bank-detail-label{
  color:#666;
  font-size:0.95rem;
  font-weight:500;
}
.bank-detail-value-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#f5f5f5;
  padding:0.6rem 1rem;
  border-radius:6px;
}
.bank-detail-value{
  color:var(--dark);
  font-weight:600;
  font-size:0.95rem;
}
.copy-btn-inline{
  background:transparent;
  border:none;
  cursor:pointer;
  padding:0.3rem;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.2s;
  opacity:0.6;
}
.copy-btn-inline:hover{
  opacity:1;
  transform:scale(1.1);
}
.copy-btn-inline svg{
  width:18px;
  height:18px;
  stroke:#666;
}
.copy-btn-inline.copied svg{
  stroke:#22c55e;
}

/* CTA Banner Section */
.donation-cta-banner{
  background:linear-gradient(135deg,#0066cc 0%,#004999 100%);
  padding:4rem 2rem;
  text-align:center;
  color:#fff;
}
.donation-cta-content h2{
  font-size:2.5rem;
  font-weight:800;
  margin:0 0 1rem 0;
  letter-spacing:0.05em;
}
.donation-cta-content p{
  font-size:1.1rem;
  line-height:1.7;
  max-width:900px;
  margin:0 auto 2rem;
  opacity:0.95;
}
.donate-now-btn{
  background:#fff;
  color:#0066cc;
  padding:1rem 3rem;
  border-radius:6px;
  font-weight:700;
  font-size:1rem;
  text-decoration:none;
  display:inline-block;
  transition:all 0.3s;
  letter-spacing:0.05em;
  border:none;
  cursor:pointer;
}
.donate-now-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* PayPal Donation Styles */
.paypal-donation-wrapper{
  margin-top:2.5rem;
  padding:2rem;
  background:linear-gradient(135deg, #f8fafc 0%, #fff 100%);
  border-radius:12px;
  border:2px solid var(--gold);
  text-align:center;
  box-shadow:var(--shadow-sm);
}
.paypal-title{
  color:var(--dark);
  font-size:1.2rem;
  font-weight:600;
  margin-bottom:1.5rem;
}
.paypal-form{
  display:flex;
  justify-content:center;
}
.paypal-btn{
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  border-radius:4px;
}
.paypal-btn:hover{
  transform:scale(1.05);
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}
.cta-paypal-form{
  display:inline-block;
}

/* Responsive Design */
@media (max-width:1024px){
  .donation-grid{
    grid-template-columns:1fr;
    gap:3rem;
  }
  .donation-left{
    padding-right:0;
  }
  .donation-hero h1{
    font-size:3rem;
  }
  .founder-image-circle{
    width:240px;
    height:240px;
  }
  .founder-title{
    font-size:1.3rem;
  }
  .founder-org{
    font-size:1.1rem;
  }
}

@media (max-width:768px){
  .donation-hero{
    min-height:450px;
    padding:3rem 1.5rem;
  }
  .donation-hero h1{
    font-size:2.5rem;
  }
  .founder-image-circle{
    width:200px;
    height:200px;
    border-width:6px;
  }
  .founder-title{
    font-size:1.2rem;
  }
  .founder-org{
    font-size:1rem;
  }
  .donation-content{
    padding:3rem 1.5rem;
  }
  .donation-left h2{
    font-size:2rem;
  }
  .bank-details-card{
    padding:1.5rem;
  }
  .bank-detail-row{
    grid-template-columns:1fr;
    gap:0.5rem;
  }
  .bank-detail-value-wrapper{
    width:100%;
  }
  .donation-cta-content h2{
    font-size:2rem;
  }
  .donation-cta-content p{
    font-size:1rem;
  }
}

@media (max-width:640px){
  .donation-hero{
    min-height:400px;
    padding:2rem 1rem;
  }
  .donation-hero h1{
    font-size:2rem;
  }
  .founder-image-circle{
    width:160px;
    height:160px;
    border-width:5px;
    margin-bottom:1.5rem;
  }
  .founder-title{
    font-size:1rem;
  }
  .founder-org{
    font-size:0.9rem;
  }
  .breadcrumb{
    font-size:0.85rem;
  }
  .donation-content{
    padding:2rem 1rem;
  }
  .donation-left h2{
    font-size:1.6rem;
  }
  .donation-message{
    font-size:0.95rem;
  }
  .bank-org-name-main{
    font-size:1.2rem;
  }
  .donation-cta-banner{
    padding:3rem 1rem;
  }
  .donation-cta-content h2{
    font-size:1.6rem;
  }
  .donate-now-btn{
    padding:0.85rem 2rem;
    font-size:0.9rem;
  }
}
