* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Open Sans",
    sans-serif;
  line-height: 1.5;
  color: #ffffff;
  background-color: #000000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Hero Grid with Images Left and Right */
.hero {
  background: #000000;
  color: white;
  text-align: center;
  padding: 2rem 0;
  border-bottom: 4px solid #f59e0b;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-image-left,
.hero-image-right {
  flex: 1;
  min-width: 100px;
  max-width: 180px;
}

.hero-image-left img,
.hero-image-right img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  border: 2px solid #f59e0b;
  background-color: #1a1a1a;
  object-fit: cover;
}

.hero-text {
  flex: 2;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tagline {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

/* Hero Logo - replaces the contact button */
.hero-logo {
  margin-top: 1rem;
}

.hero-logo img {
  max-width: 200px;
  height: auto;
  display: inline-block;
}

/* Mission section */
.mission {
  background-color: #000000;
  text-align: center;
}

.mission h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #f59e0b;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.mission-card {
  background: #111111;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #f59e0b;
}

.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #f59e0b;
}

.mission-card p {
  color: #dddddd;
}

/* Statue section */
.statue-section {
  background-color: #111111;
  padding: 2rem 0;
  border-top: 1px solid #f59e0b;
  border-bottom: 1px solid #f59e0b;
}

.statue-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.statue-text {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.statue-text h2 {
  color: #f59e0b;
  margin-bottom: 1rem;
}

.statue-text p {
  color: #dddddd;
  margin-bottom: 0.5rem;
}

/* Activities section */
.activities {
  background-color: #111111;
  text-align: center;
}

.activities h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #f59e0b;
}

/* Intervention section */
.intervention {
  background-color: #000000;
  text-align: center;
}

.intervention h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #f59e0b;
}

.intervention-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.intervention-item {
  background-color: #111111;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid #f59e0b;
  font-weight: 500;
  color: #f59e0b;
}

/* Footer */
.footer {
  background-color: #000000;
  color: #cccccc;
  text-align: center;
  border-top: 2px solid #f59e0b;
}

.footer a {
  color: #f59e0b;
  text-decoration: none;
}

.footer hr {
  margin: 1rem 0;
  border-color: #333333;
}

.copyright {
  font-size: 0.75rem;
  opacity: 0.7;
}

.logo-support {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #111111;
  border-radius: 0.5rem;
}

.logo-support img {
  max-width: 150px;
  height: auto;
  margin: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-grid {
    flex-direction: column;
    text-align: center;
  }

  .hero-image-left,
  .hero-image-right {
    max-width: 150px;
    margin: 0 auto;
  }

  .hero-logo img {
    max-width: 150px;
  }

  .mission h2,
  .activities h2,
  .intervention h2 {
    font-size: 1.6rem;
  }

  .statue-content {
    flex-direction: column;
    text-align: center;
  }
}
