/* Extracted from page2.html */
/* CSS Variables */
:root {
  --primary: #1a73e8;
  --primary-dark: #0d47a1;
  --secondary: #34a853;
  --accent: #fbbc05;
  --text-dark: #202124;
  --text-light: #5f6368;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
p { margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: 50px; font-weight: 600; font-size: 16px; transition: var(--transition); cursor: pointer; border: none; gap: 8px; }
.btn-primary { background-color: var(--primary); color: var(--white); }
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(26, 115, 232, 0.3); }
.btn-secondary { background-color: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background-color: rgba(26, 115, 232, 0.1); transform: translateY(-2px); }

.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; position: relative; }
.section-title:after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(to right, var(--primary), var(--secondary)); border-radius: 2px; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; background-color: rgba(255, 255, 255, 0.95); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); z-index: 1000; transition: var(--transition); }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; max-width: 1200px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo { height: 40px; width: auto; }
.brand-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--primary); }
.nav-menu { display: flex; list-style: none; gap: 30px; }
.nav-link { font-weight: 600; position: relative; padding: 5px 0; transition: var(--transition); cursor: pointer; }
.nav-link:after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover:after, .nav-link.active:after { width: 100%; }
.nav-item.more-menu { position: relative; }
.more-btn { background: none; border: none; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 5px; padding: 5px 0; font-family: 'Open Sans', sans-serif; font-size: 16px; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background-color: var(--white); box-shadow: var(--shadow); border-radius: 8px; padding: 10px 0; list-style: none; min-width: 200px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); z-index: 100; }
.dropdown-item { display: block; padding: 10px 20px; transition: var(--transition); cursor: pointer; }
.dropdown-item:hover { background-color: rgba(26, 115, 232, 0.1); color: var(--primary); }
.nav-item.more-menu:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.hamburger { display: none; flex-direction: column; cursor: pointer; }
.bar { width: 25px; height: 3px; background-color: var(--text-dark); margin: 3px 0; transition: var(--transition); }

/* Page Container */
.page-container { display: none; }
.page-container.active { display: block; }

/* Hero Section with Slideshow */
.hero { position: relative; height: 100vh; display: flex; align-items: center; overflow: hidden; margin-top: 70px; }
.slideshow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; background-size: cover; background-position: center; }
.slide.active { opacity: 1; }
.slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)); }
.hero-content { max-width: 600px; color: var(--white); padding: 0 20px; z-index: 1; }
.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; line-height: 1.1; }
.subtitle { font-size: 1.5rem; font-weight: 300; margin-bottom: 1.5rem; color: var(--accent); }
.description { font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 500px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* Page Header */
.page-header { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); padding: 120px 0 60px; margin-top: 70px; text-align: center; }
.page-header h1 { font-size: 3rem; margin-bottom: 1rem; }
.page-header p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; }

/* Content Sections */
.content-section { padding: 80px 0; }
.content-section.bg-light { background-color: var(--bg-light); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.content-text { padding-right: 20px; }

/* Mini bar chart above commitment */
.mini-chart { width: 100%; max-width: 520px; height: 210px; margin-bottom: 16px; }
.mini-chart canvas { width: 100% !important; height: 210px !important; display: block; }

.content-image { border-radius: 12px; overflow: visible; min-height: 400px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; padding: 15px; position: relative; }
.content-image img { width: 100%; height: auto; max-height: 600px; object-fit: contain; display: block; border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease; background-color: var(--white); position: relative; z-index: 1; }
.content-image:hover img { transform: translateY(-8px) scale(1.02); }

.impact-visualization-image { width: 100%; max-width: 100%; margin-bottom: 40px; }
.impact-visualization-image img { width: 100%; height: auto; max-height: 600px; object-fit: contain; border-radius: 12px; box-shadow: var(--shadow); display: block; }

/* Posters Carousel */
.posters-section { padding: 70px 0 30px; background-color: var(--white); }
.poster-carousel { position: relative; }
.poster-viewport { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; }
.poster-viewport::-webkit-scrollbar { display: none; }
.poster-track { display: inline-flex; gap: 20px; padding: 10px 5px 20px; }
.poster-item { scroll-snap-align: center; flex: 0 0 85%; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.poster-item img { width: 100%; height: 360px; object-fit: contain; display: block; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: var(--white); border: 1px solid #e5e7eb; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); cursor: pointer; z-index: 5; }
.carousel-btn:hover { background: #f9fafb; }
.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }
@media (min-width: 768px) { .poster-item { flex-basis: 46%; } .poster-item img { height: 420px; } .carousel-btn.prev { left: -20px; } .carousel-btn.next { right: -20px; } }
@media (min-width: 1024px) { .poster-item { flex-basis: 31%; } .poster-item img { height: 480px; } }

/* Impact Stats */
.impact-stats { padding: 100px 0; background-color: var(--bg-light); }
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 50px; }
.dashboard-card { background-color: var(--white); border-radius: 12px; padding: 30px 20px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.dashboard-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); }
.dashboard-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.dashboard-card h3 { font-size: 2.5rem; color: var(--primary); margin-bottom: 10px; }
.dashboard-card p { font-weight: 600; margin-bottom: 5px; }
.dashboard-card small { color: var(--text-light); }
.impact-cta { text-align: center; background-color: var(--white); padding: 40px; border-radius: 12px; box-shadow: var(--shadow); max-width: 800px; margin: 0 auto; }
.impact-cta p { font-size: 1.2rem; margin-bottom: 20px; }

/* Quick Info */
.quick-info { padding: 100px 0; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.info-card { background-color: var(--white); border-radius: 12px; padding: 40px 30px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); border-top: 4px solid var(--primary); }
.info-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
.info-card:nth-child(2) { border-top-color: var(--secondary); }
.info-card:nth-child(3) { border-top-color: var(--accent); }
.info-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.info-card:nth-child(2) i { color: var(--secondary); }
.info-card:nth-child(3) i { color: var(--accent); }
.info-card h3 { margin-bottom: 15px; }

/* Modal */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.45); padding: 20px; }
.modal-content { background-color: var(--white); margin: 60px auto; padding: 30px; border-radius: 12px; box-shadow: var(--shadow); max-width: 560px; }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.modal-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-light); }

/* Steps Section */
.steps-section { padding: 100px 0; background-color: var(--bg-light); }
.steps-container { display: flex; flex-direction: column; gap: 40px; width: 100%; max-width: 100%; }
.step { display: flex; align-items: flex-start; gap: 25px; background-color: var(--white); padding: 30px; border-radius: 12px; box-shadow: var(--shadow); transition: var(--transition); width: 100%; }
.step:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
.step-number { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; flex-shrink: 0; }
.step-content { display: flex; flex-direction: row; align-items: center; gap: 90px; flex: 1; width: 100%; min-width: 0; }
.step-content>div:first-of-type:not(.step-image), .step-content>h3:first-of-type { flex: 1; }
.step-content h3 { margin-bottom: 12px; margin-top: 0; color: var(--primary); font-size: 1.5rem; line-height: 1.3; }
.step-content p { font-size: 1rem; line-height: 1.7; color: var(--text-light); margin-bottom: 0; margin-top: 0; }
.step-content>div:has(h3) { display: flex; flex-direction: column; flex: 1; min-width: 0; justify-content: center; }
.step-image { flex-shrink: 0; width: 350px; max-width: 350px; min-width: 250px; border-radius: 12px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.step-image img { width: 100%; height: auto; display: block; object-fit: cover; }
.step:hover .step-image { transform: translateY(-3px); }

/* Form Styles */
.form-section { padding: 100px 0; }
.form-container { max-width: 600px; margin: 0 auto; background-color: var(--white); padding: 40px; border-radius: 12px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text-dark); }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 8px; font-family: 'Open Sans', sans-serif; font-size: 16px; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2); }

/* Popup */
.popup-message { display: none; position: fixed; top: 30px; left: 50%; transform: translateX(-50%); z-index: 9999; padding: 16px 30px; border-radius: 10px; font-size: 16px; background-color: #fff; font-weight: 600; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); animation: fadeInOut 3s ease; }
.popup-message.success { color: #1a73e8; }
.popup-message.error { color: #dc3545; }
@keyframes fadeInOut { 0% { opacity: 0; transform: translate(-50%, -20px); } 10%, 90% { opacity: 1; transform: translate(-50%, 0); } 100% { opacity: 0; transform: translate(-50%, -20px); } }

/* Footer */
.footer { background-color: var(--text-dark); color: var(--white); padding: 60px 0 20px; }
.footer-content { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; margin-bottom: 40px; }
.footer h3 { color: var(--accent); margin-bottom: 15px; }
.footer-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; }
.footer-links a { transition: var(--transition); cursor: pointer; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.7); }

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 3rem; }
  .footer-content { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 30px; }
  .content-text { padding-right: 0; }
  .content-image { min-height: 300px; }
  .content-image img { max-height: 450px; }
  .impact-visualization-image img { max-height: 400px; }
  .step { padding: 28px 25px; gap: 22px; }
  .step-content { gap: 50px; }
  .step-content h3 { font-size: 1.4rem; }
  .step-content p { font-size: 0.98rem; }
  .step-image { max-width: 280px; }
}
@media (max-width: 768px) {
  .nav-menu { position: fixed; top: 70px; left: -100%; width: 100%; background-color: var(--white); flex-direction: column; text-align: center; padding: 20px 0; box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1); transition: var(--transition); gap: 0; }
  .nav-menu.active { left: 0; }
  .nav-link { display: block; padding: 15px 0; }
  .nav-item.more-menu { position: static; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background-color: rgba(26, 115, 232, 0.05); margin-top: 10px; display: none; }
  .nav-item.more-menu:hover .dropdown-menu { display: block; }
  .more-btn { width: 100%; justify-content: center; }
  .dropdown-menu.open { display: block; }
  .dropdown-item { text-align: center; }
  .hamburger { display: flex; }
  .hamburger.active .bar:nth-child(2) { opacity: 0; }
  .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero h1 { font-size: 2.5rem; }
  .subtitle { font-size: 1.3rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: 2rem; }
  .page-header h1 { font-size: 2.5rem; }
  .step { flex-direction: column; text-align: center; padding: 25px 20px; gap: 20px; }
  .step-number { width: 45px; height: 45px; font-size: 1.3rem; margin: 0 auto; }
  .step-content { flex-direction: column; width: 100%; align-items: center; gap: 30px; }
  .step-content>div:has(h3) { width: 100%; }
  .step-content h3 { font-size: 1.3rem; margin-bottom: 12px; text-align: center; width: 100%; }
  .step-content p { font-size: 0.95rem; line-height: 1.7; text-align: left; padding: 0 10px; width: 100%; }
  .step-image { width: 100%; max-width: 100%; margin: 0 auto 20px; }
  .form-container { padding: 30px 20px; }
}
@media (max-width: 576px) {
  .hero h1 { font-size: 2rem; }
  .dashboard-card h3 { font-size: 2rem; }
  .info-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 2rem; }
  .content-image { min-height: 250px; }
  .content-image img { max-height: 350px; }
  .impact-visualization-image img { max-height: 300px; }
  .step { padding: 20px 15px; gap: 15px; }
  .step-number { width: 40px; height: 40px; font-size: 1.2rem; }
  .step-content { flex-direction: column; align-items: center; gap: 25px; }
  .step-content>div:has(h3) { width: 100%; }
  .step-content h3 { font-size: 1.2rem; margin-bottom: 10px; text-align: center; width: 100%; }
  .step-content p { font-size: 0.9rem; line-height: 1.6; padding: 0 5px; width: 100%; }
  .step-image { width: 100%; max-width: 100%; margin-bottom: 15px; }
}


