:root {
  --primary: #651e1a;
  --secondary: #f4a460;
  --light: #fff;
  --shadow: 0 2px 8px rgba(0,0,0,0.07);
}
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.header {
  background: var(--light);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  height: 52px;
  width: auto;
}
nav {
  position: relative;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
}
.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}
.nav-list li {
  position: relative;
}
.nav-list > li > a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 4px;
  transition: background 0.2s;
}
.nav-list > li > a:hover,
.nav-list > li > a:focus {
  background: var(--secondary);
  color: var(--light);
}
.has-submenu > a i {
  margin-left: 5px;
  font-size: 0.9em;
}
.submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  background: var(--light);
  box-shadow: var(--shadow);
  min-width: 210px;
  border-radius: 5px;
  z-index: 10;
  padding: 0.5rem 0;
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  display: block;
}
.submenu li {
  position: relative;
}
.submenu a {
  display: block;
  padding: 10px 22px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  border-radius: 3px;
  transition: background 0.2s;
}
.submenu a:hover,
.submenu a:focus {
  background: var(--secondary);
  color: var(--light);
}
.submenu-right {
  left: 100%;
  top: 0;
}
@media (max-width: 900px) {
  .header-flex {
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }
  .logo {
    height: 48px;
  }
}
@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--light);
    position: absolute;
    top: 70px;
    right: 0;
    width: 250px;
    box-shadow: var(--shadow);
    border-radius: 0 0 8px 8px;
    z-index: 99;
  }
  .nav-list.open {
    display: flex;
  }
  .nav-list > li > a {
    padding: 15px 22px;
    border-radius: 0;
  }
  .submenu {
    position: static;
    box-shadow: none;
    min-width: 100%;
    border-radius: 0;
    padding: 0;
  }
  .submenu-right {
    left: 0;
    top: 0;
  }
}
section {
  min-height: 100px;
  padding: 40px 0;
}


.hero-section {
  background: linear-gradient(90deg, #651e1a 60%, #f4a460 100%);
  color: #fff;
  padding-top: 110px;
  padding-bottom: 40px;
}
.hero-grid {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-content {
  flex: 1 1 320px;
  max-width: 540px;
}
.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 28px;
}
.cta-btn {
  display: inline-block;
  background: #f4a460;
  color: #fff;
  padding: 14px 36px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(101,30,26,0.08);
}
.cta-btn:hover,
.cta-btn:focus {
  background: #651e1a;
  color: #fff;
  transform: translateY(-3px) scale(1.04);
}
.hero-img {
  flex: 1 1 250px;
  text-align: right;
}
.hero-img img {
  max-width: 340px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  background: #fff;
}
@media (max-width: 900px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .hero-img {
    text-align: center;
  }
}




.feature-block-section {
  background: #f4f1ef;
  padding: 60px 0;
}

.feature-block-flex {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.feature-img {
  flex: 1 1 260px;
  text-align: center;
}

.feature-img img {
  width: 920px;         
  height: 420px;        
  max-width: 100%;      
  max-height: 90%;     
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(101,30,26,0.10);
  background: #fff;
  object-fit: cover;    
}

.feature-content {
  flex: 2 1 340px;
}

.feature-content h2 {
  color: #651e1a;
  font-size: 2rem;
  margin-bottom: 15px;
}

.feature-content > p {
  font-size: 1.08rem;
  margin-bottom: 18px;
}

.feature-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.feature-details h3 {
  color: #651e1a;
  font-size: 1.1rem;
  margin-bottom: 7px;
}

.feature-details ul {
  margin: 0 0 0 18px;
  padding: 0;
  font-size: 1rem;
}

.feature-details li {
  margin-bottom: 4px;
}

.feature-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1rem;
  color: #651e1a;
}

.feature-meta i {
  margin-right: 6px;
}


@media (max-width: 900px) {
  .feature-block-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
  .feature-details {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 600px) {
  .feature-img img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 320px;
  }
}


.stats-section {
  background: #fff;
  padding: 50px 0 40px 0;
}
.stats-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-card {
  flex: 1 1 180px;
  background: #f8f4f2;
  border-radius: 14px;
  padding: 36px 24px;
  text-align: center;
  margin: 0 10px;
  box-shadow: 0 2px 10px rgba(101,30,26,0.07);
  min-width: 180px;
}
.icon-3d {
  color: #651e1a;
  filter: drop-shadow(0 2px 6px rgba(101,30,26,0.11));
  margin-bottom: 12px;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #651e1a;
  margin: 10px 0 6px 0;
}
.stat-label {
  font-size: 1.1rem;
  color: #222;
}
.stats-highlights {
  margin-top: 40px;
  background: #f4f1ef;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(101,30,26,0.07);
}
.stats-highlights h3 {
  color: #651e1a;
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.stats-highlights ul {
  padding-left: 20px;
}
.stats-highlights li {
  margin-bottom: 10px;
  font-size: 1.08rem;
}
@media (max-width: 820px) {
  .stats-grid {
    flex-direction: column;
    gap: 1.3rem;
  }
  .stat-card {
    margin: 0;
    min-width: 0;
  }
}



.programs-section {
  background: #fff;
  padding: 60px 0;
}
.section-title {
  text-align: center;
  color: #651e1a;
  font-size: 2rem;
  margin-bottom: 36px;
  font-weight: 700;
}
.programs-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #333;
}
.programs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.program-card {
  background: #f8f4f2;
  border-radius: 14px;
  padding: 32px 22px;
  text-align: left;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 260px;
  box-shadow: 0 2px 10px rgba(101,30,26,0.07);
  transition: transform 0.18s;
  margin-bottom: 20px;
}
.program-card:hover, .program-card:focus-within {
  transform: translateY(-7px) scale(1.04);
  box-shadow: 0 6px 18px rgba(101,30,26,0.14);
}
.program-card i {
  color: #651e1a;
  margin-bottom: 10px;
}
.program-card h3 {
  font-size: 1.15rem;
  color: #651e1a;
  margin: 12px 0 10px 0;
}
.program-card p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 10px;
}
.program-card ul {
  font-size: 0.98rem;
  padding-left: 18px;
  margin: 0 0 0 0;
  color: #444;
}
.program-card ul li {
  margin-bottom: 4px;
}
.projects-list {
  margin-top: 40px;
  background: #f4f1ef;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(101,30,26,0.07);
  text-align: left;
}
.projects-list h3 {
  color: #651e1a;
  margin-bottom: 14px;
  font-size: 1.2rem;
}
.projects-list ul {
  padding-left: 20px;
  margin-bottom: 18px;
}
.projects-list li {
  margin-bottom: 7px;
  font-size: 1.05rem;
}
.cta-btn {
  display: inline-block;
  background: #f4a460;
  color: #fff;
  padding: 12px 28px;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(101,30,26,0.08);
}
.cta-btn:hover,
.cta-btn:focus {
  background: #651e1a;
  color: #fff;
  transform: translateY(-3px) scale(1.04);
}
@media (max-width: 900px) {
  .programs-grid {
    flex-direction: column;
    gap: 1.3rem;
    align-items: center;
  }
  .program-card {
    min-width: 0;
    max-width: 100%;
  }
}



.impact-stories-section {
  background: #fff;
  padding: 60px 0 40px 0;
}
.impact-stats-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 40px;
}
.impact-stat-card {
  background: #f8f4f2;
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 200px;
  max-width: 260px;
  flex: 1 1 220px;
  box-shadow: 0 2px 10px rgba(101,30,26,0.07);
  transition: transform 0.18s;
}
.impact-stat-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 6px 18px rgba(101,30,26,0.14);
}
.icon-3d {
  color: #651e1a;
  filter: drop-shadow(0 2px 6px rgba(101,30,26,0.11));
}
.impact-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #651e1a;
}
.impact-stat-label {
  font-size: 1rem;
  color: #222;
}
.success-stories {
  margin-top: 40px;
  background: #f4f1ef;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(101,30,26,0.07);
}
.success-stories h3 {
  color: #651e1a;
  margin-bottom: 24px;
  font-size: 1.35rem;
  text-align: center;
}
.stories-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.story-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(101,30,26,0.09);
  padding: 18px 14px;
  max-width: 340px;
  min-width: 220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.story-card img {
  width: 100%;
  max-width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  background: #eee;
}
.story-card h4 {
  color: #651e1a;
  font-size: 1.12rem;
  margin: 10px 0 8px 0;
  text-align: center;
}
.story-card p {
  font-size: 1rem;
  color: #222;
  text-align: center;
}
.story-card .quote {
  display: block;
  margin-top: 10px;
  font-style: italic;
  color: #228b22;
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  .impact-stats-cards,
  .stories-grid {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .impact-stat-card,
  .story-card {
    min-width: 0;
    max-width: 100%;
  }
}


.knowledge-bank-section {
  background: #f4f1ef;
  padding: 60px 0 40px 0;
}
.knowledge-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 40px;
}
.knowledge-category {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  min-width: 200px;
  max-width: 260px;
  flex: 1 1 220px;
  box-shadow: 0 2px 10px rgba(101,30,26,0.07);
  text-align: left;
  margin-bottom: 20px;
  transition: transform 0.18s;
}
.knowledge-category:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 6px 18px rgba(101,30,26,0.14);
}
.knowledge-category i {
  color: #651e1a;
  margin-bottom: 10px;
}
.knowledge-category h3 {
  color: #651e1a;
  font-size: 1.1rem;
  margin: 10px 0 8px 0;
}
.knowledge-category ul {
  padding-left: 18px;
  margin: 0;
  font-size: 1rem;
  color: #444;
}
.knowledge-category ul li {
  margin-bottom: 6px;
}
.knowledge-category ul li a {
  color: #651e1a;
  text-decoration: none;
  transition: color 0.2s;
}
.knowledge-category ul li a:hover {
  color: #f4a460;
}
.newsletter-block {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(101,30,26,0.07);
  text-align: center;
  margin-top: 30px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-block h3 {
  color: #651e1a;
  margin-bottom: 10px;
}
.newsletter-form {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 22px;
  font-size: 1rem;
  min-width: 200px;
  outline: none;
}
.newsletter-form button {
  background: #f4a460;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.newsletter-form button:hover,
.newsletter-form button:focus {
  background: #651e1a;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
  .knowledge-categories {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .knowledge-category {
    min-width: 0;
    max-width: 100%;
  }
}



.connect-section {
  background: #fff;
  padding: 60px 0 40px 0;
}
.connect-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
}
.connect-block {
  background: #f4f1ef;
  border-radius: 14px;
  padding: 32px 24px;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 370px;
  box-shadow: 0 2px 10px rgba(101,30,26,0.07);
  margin-bottom: 20px;
}
.connect-block h2 {
  color: #651e1a;
  margin-bottom: 18px;
  font-size: 1.25rem;
}
.contact-list, .quick-links {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  font-size: 1.05rem;
}
.contact-list li, .quick-links li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.contact-list i, .quick-links i {
  color: #651e1a;
  margin-right: 8px;
  min-width: 18px;
}
.contact-list a, .quick-links a {
  color: #651e1a;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-list a:hover, .quick-links a:hover {
  color: #f4a460;
}
.social-links {
  margin-top: 10px;
}
.social-links a {
  color: #651e1a;
  margin-right: 12px;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.social-links a:hover {
  color: #f4a460;
}
.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feedback-form input,
.feedback-form textarea {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 22px;
  font-size: 1rem;
  outline: none;
}
.feedback-form textarea {
  border-radius: 14px;
  resize: vertical;
}
.feedback-form button {
  background: #f4a460;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.feedback-form button:hover,
.feedback-form button:focus {
  background: #651e1a;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.feedback-success {
  color: #228b22;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}
@media (max-width: 900px) {
  .connect-flex {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .connect-block {
    min-width: 0;
    max-width: 100%;
  }
}


.footer {
  background: #651e1a;
  color: #fff;
  padding: 0;
  margin-top: 40px;
  position: relative;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  padding: 50px 0 30px 0;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
}
.footer-logo {
  height: 48px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
}
.footer-brand-summary {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #fff;
  opacity: 0.95;
}
.footer-cta {
  margin-top: 10px;
}
.cta-btn {
  display: inline-block;
  background: #f4a460;
  color: #fff;
  padding: 10px 26px;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 6px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(101,30,26,0.08);
}
.cta-btn:hover,
.cta-btn:focus {
  background: #fff;
  color: #651e1a;
  transform: translateY(-2px) scale(1.04);
}
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}
.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 1rem;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #f4a460;
}
.footer-contact i {
  margin-right: 8px;
  color: #f4a460;
  min-width: 18px;
}
.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f4a460;
}
.footer-social {
  margin-top: 10px;
}
.footer-social a {
  color: #fff;
  margin-right: 12px;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #f4a460;
}
.footer-newsletter {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.footer-newsletter input[type="email"] {
  padding: 8px 12px;
  border: none;
  border-radius: 18px;
  font-size: 1rem;
  min-width: 140px;
  outline: none;
}
.footer-newsletter button {
  background: #f4a460;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.footer-newsletter button:hover,
.footer-newsletter button:focus {
  background: #fff;
  color: #651e1a;
  transform: translateY(-2px) scale(1.04);
}
.newsletter-success {
  color: #228b22;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}
.footer-bottom {
  background: #4a1411;
  color: #fff;
  padding: 12px 0;
  font-size: 0.96rem;
}
.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom a {
  color: #f4a460;
  text-decoration: none;
  margin: 0 6px;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: #fff;
}


@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 36px 0 18px 0;
  }
  .footer-bottom-flex {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}


