
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

header, footer {
    background: #002244;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
}

.header-title {
    text-align: center;
    padding: 10px;
}

.header-title h1 {
    margin: 0;
    color: white;
    font-size: 28px;
}

.header-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
    text-align: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 800px;
    margin-top: 10px;
}

.search-form input[type="text"] {
    flex: 1 1 70%;
    min-width: 200px;
    padding: 7px;
    border-radius: 4px;
    border: none;
}

.search-form button {
    padding: 7px 14px;
    background: white;
    color: #002244;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cta-section {
    background-color: #002244;
    color: white;
    text-align: center;
    padding: 20px;
    margin: 40px auto;
    border-radius: 12px;
    max-width: 1000px;
}

.cta-button {
    display: inline-block;
    background-color: #ffcc00;
    color: #002244;
    padding: 12px 60px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e6b800;
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .search-form input[type="text"],
  .search-form button {
    width: 100%;
    margin-left: 0;
  }

  .header-title h1 {
    font-size: 22px;
  }

  .cta-button {
    padding: 12px 40px;
    font-size: 16px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
