* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #f4f4f4;
}

.hero {
  background-color: #2f466b;
  text-align: center;
  padding: 2rem 1rem;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}

.logo span {
  color: #ffffff;
}

.subtitle {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: #ffffff;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  gap: 1rem;
}

.section-img {
  max-width: 100%;
  border-radius: 10px;
}

.section.info {
  background-color: #3f5b83;
  color: white;
}

.section.impact {
  background-color: #ddad8d;
  color: white;
}

.text {
  max-width: 800px;
  text-align: center;
  padding: 0 1rem;
}

footer {
  background-color: #2f466b;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.footer-content {
  margin-bottom: 1rem;
}

.footer-content a {
  color: white;
  text-decoration: none;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.socials img {
  width: 24px;
  height: 24px;
}

/* Responsive */
@media (min-width: 768px) {
  .section {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .section.reverse {
    flex-direction: row-reverse;
  }

  .section-img {
    max-width: 400px;
  }

  .text {
    text-align: left;
  }
}
