body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f0f4f8;
    color: #333;
}

header .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #002b5c;
    padding: 10px 20px;
}

header .logo img {
    height: 50px;
}

.menu-toggle {
  display: none;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    transition: background 0.3s, transform 0.2s;
}

nav ul li a:hover {
    background: #007BFF;
    border-radius: 4px;
    transform: scale(1.1);
}

main {
    max-width: 1200px;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.banner-section {
    position: relative;
    margin-bottom: 30px;
}

.banner-section img {
    width: 100%;
    border-radius: 12px;
}

.banner-text {
    position: absolute;
    top: 72%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 30px;
    border-radius: 12px;
}

.banner-text h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

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

.cta-button {
    background: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #0056b3;
}

.highlights {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.highlight-box {
    flex: 1;
    margin: 10px;
    min-width: 250px;
    background: #f9fafc;
    border-radius: 12px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.highlight-box img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}

.extra-section {
    margin-top: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature {
    background: #f9fafc;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

footer {
    background: #002b5c;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    font-size: 0.9em;
    border-top: 4px solid #007BFF;
}

.extra-section {
  padding: 40px;
  background-color: #f9f9f9;
}

.extra-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 50px;
  color: #4a86c5; /* Change this to your brand color */
  margin-bottom: 15px;
}

.feature h4 {
  margin-bottom: 10px;
  font-size: 1.3em;
}

.feature p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: #e8f1f8;
  border-bottom: 1px solid #ccc;
}

.hero img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 1rem;
}

.hero-text {
  max-width: 600px;
  margin: 1rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.hero-text p {
  font-size: 1.2rem;
}

/* Content Sections */
.content-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 8px;
}

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

.content-section h3 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.content-section p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.content-section ul {
  margin: 1rem 0 2rem 1.5rem;
  list-style: disc;
}

.content-section ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.content-section img {
  max-width: 60%;
  margin: 1.5rem 0;
  border-radius: 6px;
}

/* Contact Form (if applicable later) */
form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 2rem auto;
}

form input,
form textarea {
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  padding: 0.8rem;
  background-color: #003366;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #005599;
}

/* ========================================
   Responsive Enhancements (Tablets and Below)
   ======================================== */
@media (max-width: 1024px) {
  header .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: none;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
  }

  nav ul li {
    margin: 5px 0;
  }

  .main {
    padding: 20px;
  }

  .banner-text h1 {
    font-size: 2em;
  }

  .banner-text p {
    font-size: 1em;
  }

  .highlight-box {
    flex: 1 1 45%;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .content-section img {
    max-width: 100%;
  }
}

/* ========================================
   Mobile Layout (Phones)
   ======================================== */
@media (max-width: 768px) {
  header .top-bar {
    padding: 15px;
  }

  header .logo img {
    height: 40px;
  }
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
  }
  
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #002b5c;
  }

  nav ul.active {
    display: flex;
  }

  .banner-text {
    top: 80%;
    padding: 4px;
  }

  .banner-text h1 {
    font-size: .7em;
  }

  .banner-text p {
    font-size: .5em;
  }
  
  .cta-button {
    background: #007BFF;
    color: #fff;
    padding: 2px 4px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }

  .cta-button:hover {
	background: #0056b3;
  }

  .highlight-box {
    flex: 1 1 100%;
    margin: 10px 0;
  }

  .extra-section {
    padding: 20px;
  }

  .hero {
    padding: 1rem;
  }

  .hero img {
    max-width: 90%;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .content-section {
    padding: 1rem;
  }

  form {
    padding: 1rem;
  }
}