/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and general font settings */
  body {
    font-family: 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
  }
  
  /* Header Styles */
  header {
    background-color: #013e7a; /* Dark Blue */
    padding: 20px;
  }
  
  header .logo h1 {
    color: #fff;
    font-size: 2rem;
  }
  
  header nav {
    text-align: right;
  }
  
  header nav ul {
    list-style-type: none;
  }
  
  header nav ul li {
    display: inline;
    margin-left: 20px;
  }
  
  header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
  }
  
  /* Hero Section */
  .hero {
    background-color: #b30000; /* Red */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
  }
  
  .hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }
  
  .hero .cta-button {
    background-color: #013e7a; /* Blue */
    color: #fff;
    padding: 15px 25px;
    font-size: 1.25rem;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .hero .cta-button:hover {
    background-color: #b30000; /* Red */
  }
  
 /* News Flash Announcement Styling */
.news-flash {
  background-color: #b30000; /* Red background */
  color: #ffffff; /* White text */
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 15px;
  margin: 20px auto;
  border-radius: 5px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


  /* Modules Section */
  .modules {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
  }
  
  .modules h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .module-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .module-card {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .module-card img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }
  
  .module-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .module-card p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .module-card .button {
    background-color: #013e7a; /* Blue */
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .module-card .button:hover {
    background-color: #b30000; /* Red */
  }
  
  /* Resources Section */
  .resources {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .resources h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .resource-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .resource-link {
    background-color: #013e7a; /* Blue */
    color: #fff;
    padding: 15px 30px;
    font-size: 1.25rem;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .resource-link:hover {
    background-color: #b30000; /* Red */
  }
  
  /* About Section */
  .about {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  .about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .about p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #666;
  }
  
  /* Contact Section */
  .contact {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .contact form {
    width: 50%;
    margin: 0 auto;
  }
  
  .contact form label {
    font-size: 1rem;
    display: block;
    margin-bottom: 8px;
  }
  
  .contact form input,
  .contact form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    font-size: 1rem;
  }
  
  .contact form button {
    background-color: #013e7a; /* Blue */
    color: #fff;
    padding: 15px 25px;
    font-size: 1.25rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .contact form button:hover {
    background-color: #b30000; /* Red */
  }
  
  /* Footer Section */
  footer {
    background-color: #013e7a; /* Blue */
    color: #fff;
    text-align: center;
    padding: 20px;
  }
  
  footer p {
    margin-bottom: 10px;
  }
  
  footer ul {
    list-style-type: none;
  }
  
  footer ul li {
    display: inline;
    margin-left: 20px;
  }
  
  footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
  }
  
  footer ul li a:hover {
    text-decoration: underline;
  }
  
  /* Media Queries for Mobile */
  @media only screen and (max-width: 768px) {
    .module-car
  