/* General styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f7f9fb;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

 .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  position: relative;
}

.navbar img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 20px;

  /* Provide a transition for mobile expansion */
  transition: max-height 0.3s ease;
}

.nav-links a {
  color: #003366;
  font-weight: bold;
  padding: 8px 0;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #0073b7;
}

/* Hero section */
.hero {
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #0073b7;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #005a8c;
}

/* Sections */
section {
  padding: 60px 0;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #003366;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #003366;
  margin-bottom: 10px;
}

/* Icons in cards */
.card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.card p {
  color: #555;
  margin-bottom: 15px;
}

.card a {
  color: #0073b7;
  font-weight: bold;
  margin-top: auto;
}

/* Footer */
footer {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
}

footer p {
  margin: 5px 0;
  font-size: 0.9em;
}

/* Utility */
.content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  color: #333;
}

.content h3 {
  margin-top: 30px;
  color: #003366;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h4 {
  color: #003366;
  margin-bottom: 5px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 1em;
}

.contact-form button {
  background-color: #0073b7;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #005a8c;
}

/* Navigation toggle button for mobile */
.nav-toggle {
  display: none;
  font-size: 1.6em;
  background: none;
  border: none;
  color: #003366;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: #ffffff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}