/* General Body Styling */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #f9fafc; /* Light background */
  color: #031b4e; /* Dark blue text */
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Navbar Styling */
/* Navbar Styling */
.navbar {
  background-color: #031b4e; /* Dark blue background */
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  margin-bottom: 1.5rem; /* Add spacing below the navbar */
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem; /* Space between links */
}

.navbar li {
  display: inline;
}

.navbar a {
  text-decoration: none;
  color: #ffffff; /* White text */
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #ffdd57; /* Yellow hover effect */
}
/* Container Styling */
.container {
  max-width: 1200px; /* Limit the maximum width */
  margin: 0 auto; /* Center the container */
  padding: 0 1rem; /* Add padding for smaller screens */
}

/* Hero Image Styling */
.hero-image {
  width: 100%; /* Full width for responsiveness */
  max-width: 1000px; /* Limit the maximum width */
  aspect-ratio: 16 / 9; /* Maintain a 16:9 aspect ratio */
  object-fit: cover; /* Crop the image to fit the container */
  display: block;
  margin: 1.5rem auto; /* Center the image horizontally with spacing */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for aesthetics */
}

/* Header Styling */
.site-header {
  text-align: center;
  margin-bottom: 2rem;
}

.site-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #031b4e; /* Dark blue text */
  margin: 1rem 0;
}

.site-header .tagline {
  font-size: 1.2rem;
  color: #555555; /* Subtle gray text */
  margin: 0.5rem 0;
}

/* Main Content Styling */
.site-main {
  padding: 2rem 0;
}

.content-section {
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #333333; /* Slightly darker text for readability */
  line-height: 1.8;
}

/* CTA Section Styling */
.cta-section {
  background-color: #031b4e; /* Dark blue background */
  color: #ffffff; /* White text */
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background-color: #ffdd57; /* Yellow button */
  color: #031b4e; /* Dark blue text */
  text-decoration: none;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.cta-button:hover {
  background-color: #031b4e; /* Dark blue background */
  color: #ffffff; /* White text */
}

/* Footer Styling */
.site-footer {
  background-color: #031b4e; /* Dark blue background */
  color: #ffffff; /* White text */
  padding: 2rem 1rem;
  text-align: center;
  border-top: 4px solid #ffdd57; /* Yellow border at the top */
}

.site-footer p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.site-footer a {
  color: #ffdd57; /* Yellow links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #ffffff; /* White on hover */
}

.footer-logo {
  margin-top: 1rem;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
  filter: brightness(0) invert(1); /* Ensure logo is white */
  transition: filter 0.3s ease;
}

.footer-logo img:hover {
  filter: brightness(1); /* Remove inversion on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .site-header h1 {
    font-size: 2rem;
  }

  .site-header .tagline {
    font-size: 1rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

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

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

  .hero-image {
    max-width: 100%; /* Ensure it scales properly on smaller screens */
  }
}
