*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  background-color: #f4f7f6;
  color: #2c3e50;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

header {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.logo img {
  max-width: 250px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.mission {
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: left;
  margin-bottom: 30px;
}

.mission h1 {
  color: #1a5f7a;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
}

.mission p {
  color: #34495e;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.contact {
  display: flex;
  justify-content: center;
}

.contact-button {
  display: inline-block;
  background-color: #1a5f7a;
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
  background-color: #127099;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
  .container {
      padding: 20px;
  }

  .mission {
      padding: 25px;
  }

  .mission h1 {
      font-size: 28px;
  }

  .mission p {
      font-size: 16px;
  }
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
      scroll-behavior: auto;
  }
}