body {font-family: Arial, sans-serif; margin: 0; color: #333; line-height: 1.6;}
header {background: #002a5c; color: #fff; padding: 10px 0;}
header nav {display: flex; justify-content: center; flex-wrap: wrap;}
header nav a {color: #fff; text-decoration: none; margin: 0 15px; padding: 5px 10px;}
header nav a:hover {background: #004080; border-radius: 4px;}
.hero {padding: 60px 20px; text-align: center; background: #e5f0ff;}
.hero h1 {font-size: 2rem; margin-bottom: 1rem;}
.hero p {font-size: 1.2rem; margin-bottom: 1.5rem;}
.btn {background: #0070c9; color: #fff; padding: 12px 24px; text-decoration: none; border-radius: 4px; font-weight: bold;}
.btn:hover {background: #005fa3;}
.overview {padding: 40px 20px; max-width: 800px; margin: 0 auto;}
.overview h2 {font-size: 1.8rem; margin-bottom: 1rem; text-align: center;}
.overview p {margin-bottom: 1rem;}
.cta {
    padding: 40px 20px;
    background: #f5f9ff;
    text-align: center;
    @media (max-width: 768px) {
        display: flex;
        flex-direction: column;
        gap: 1em;
    }
}
.favorites {
    display: none;
}
.btn-secondary {background: #005fa3; color: #fff; padding: 12px 24px; text-decoration: none; border-radius: 4px;}
.btn-secondary:hover {background: #004a80;}
footer {background: #002a5c; color: #fff; text-align: center; padding: 20px; font-size: 0.9rem;}
footer a {color: #a3d4ff; text-decoration: none;}
footer a:hover {text-decoration: underline;}
form {
  max-width: 600px;
  margin: 0 auto;
}
form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
form input[type="submit"] {
  margin-top: 10px;
  cursor: pointer;
  background: #0070c9;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
}
form input[type="submit"]:hover {
  background: #005fa3;
}
@media (max-width: 600px) {
  header nav {flex-direction: column;}
  header nav a {margin: 5px 0;}
  .hero h1 {font-size: 1.5rem;}
  .hero p {font-size: 1rem;}
}
