/* style.css */

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: #004466;
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  margin: 0;
  font-size: 1.8rem;
}

nav a {
  color: white;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(to right, #e0f7fa, #f1f8e9);
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
}

.section {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: auto;
}

.section h2,
.section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.6;
}

footer {
  background-color: #004466;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

a {
  color: #004466;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Buttons */
.button,
a.button {
  display: inline-block;
  background-color: #004466;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

.button:hover {
  background-color: #006699;
}

/* Responsive Design - Media Queries */
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 1rem;
  }

  nav a {
    display: block;
    margin: 0.5rem 0;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section h2,
  .section h3 {
    font-size: 1.5rem;
  }

  .section p {
    font-size: 1rem;
  }

  footer {
    font-size: 0.8rem;
  }

  .button,
  a.button {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}
