/* styles.css */

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

header {
  background-color: #0e1e2e;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.header-banner {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

main {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: auto;
}

section.content {
  margin-bottom: 2rem;
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

section.contact {
  background-color: #e6f2ff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

footer {
  text-align: center;
  background-color: #0e1e2e;
  color: white;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
}

.footer-image {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

a {
  color: #0056b3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  header, main, section, footer {
    padding: 1rem;
  }
  h1 {
    font-size: 1.5rem;
  }
  p {
    font-size: 0.95rem;
  }
}