
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 50%, #3182ce 100%);
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  opacity: 0.3;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 10px;
  opacity: 0.95;
  font-weight: 500;
}

.hero-subtitle {
  background: rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 25px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-subtitle span {
  font-size: 1rem;
  color: #e2e8f0;
  font-weight: 400;
}

.cta-button {
  display: inline-block;
  background: #e74c3c;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Section Styles */
section {
  padding: 80px 0;
}

section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: #2c3e50;
  position: relative;
}

section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #3498db;
  margin: 20px auto;
  border-radius: 2px;
}

/* Mission Section */
.mission {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mission p {
  font-size: 1.2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: #555;
}

/* Values Section */
.values {
  background: #f7fafc;
  padding: 100px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #3182ce;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 600;
}

.value-card p {
  color: #4a5568;
  line-height: 1.6;
}

/* Programs Section */
.programs {
  background: #edf2f7;
}

.program-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.program-item {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #3182ce;
}

.program-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.program-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.program-item p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 1rem;
}

/* Impact Section */
.impact {
  background: linear-gradient(135deg, #2b6cb0 0%, #3182ce 100%);
  color: white;
  padding: 100px 0;
}

.impact h2 {
  color: white;
}

.impact h2::after {
  background: #fbb6ce;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  background: rgba(255,255,255,0.1);
  padding: 40px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #fbb6ce;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #e2e8f0;
  font-weight: 500;
}

/* Partnership Section */
.partnership {
  background: white;
  padding: 100px 0;
}

.partnership-content {
  max-width: 900px;
  margin: 0 auto;
}

.partnership-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 30px;
}

.partnership-benefits {
  list-style: none;
  padding: 0;
}

.partnership-benefits li {
  background: #f7fafc;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  border-left: 4px solid #3182ce;
  font-weight: 500;
  color: #2d3748;
}

/* Testimonials Section */
.testimonials {
  background: white;
}

.testimonials blockquote {
  background: #f8f9fa;
  padding: 30px;
  margin: 20px auto;
  border-radius: 15px;
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
  position: relative;
  max-width: 700px;
  border-left: 5px solid #e74c3c;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.testimonials blockquote::before {
  content: '"';
  font-size: 4rem;
  color: #e74c3c;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: white;
}

.contact h2 {
  color: white;
}

.contact h2::after {
  background: #e74c3c;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  color: #fbb6ce;
  font-size: 1.4rem;
  margin-bottom: 15px;
  margin-top: 30px;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p {
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255,255,255,0.9);
  transition: background 0.3s ease;
}

.contact select:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

.contact label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #ecf0f1;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255,255,255,0.9);
  transition: background 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

.contact button {
  background: #e74c3c;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.contact button:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* Footer */
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 30px 0;
}

footer p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .hero-logo {
    width: 80px;
    height: 80px;
  }
  
  section {
    padding: 60px 0;
  }
  
  section h2 {
    font-size: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .program-list {
    grid-template-columns: 1fr;
  }
  
  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  section {
    padding: 40px 0;
  }
}
