/* Basic Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

/* Navigation */
header {
  background-color: #0b3d91;
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
header nav .logo a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
header nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
header nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('assets/images/hero.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero .cta {
  background-color: #ff8500;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.hero .cta:hover {
  background-color: #e47500;
}

/* Sections */
section {
  padding: 4rem 2rem;
}
.section-light {
  background-color: #f7f7f7;
}
.section-dark {
  background-color: #0b3d91;
  color: #fff;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.section-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
}

/* Footer */
footer {
  background-color: #0b3d91;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}
footer a {
  color: #ff8500;
  text-decoration: none;
}
.footer-links a {
  margin: 0 0.5rem;
  color: #ff8500;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* Form styles */
form label {
  font-weight: bold;
}
form input[type="text"], form input[type="email"], form textarea {
  width: 100%;
  padding: 0.6rem;
  margin: 0.3rem 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
form input[type="submit"] {
  background-color: #ff8500;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}
form input[type="submit"]:hover {
  background-color: #e47500;
}

@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
  }
  header nav ul li a {
    display: block;
    padding: 0.5rem 0;
  }
  .hero {
    height: 50vh;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
