* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  color: #333;
  display: none;
  line-height: 1.6;
  background-color: #f8fafc;
}

.sticky-header {
  position: sticky;
  top: 0;
  background: #005eb8;
  color: white;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  padding: 12px 20px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 80px;
  width: auto;
}

.header-info {
  text-align: right;
}

.header-info a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
  margin-top: 5px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #005eb8;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

h2 {
  color: #005eb8;
  margin: 25px 0 15px;
}

p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.form-container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #005eb8;
}

input[type="text"],
input[type="tel"],
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.checkbox-group {
  margin: 25px 0;
  padding: 20px;
  background: #f1f7ff;
  border-radius: 5px;
  max-height: 300px;
  overflow-y: auto;
}

.checkbox-group label {
  font-weight: normal;
  display: flex;
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
}

.submit-btn {
  background: #005eb8;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #004a93;
}

footer {
  background: #005eb8;
  color: white;
  padding: 30px 20px;
  text-align: center;
  margin-top: 40px;
}

.footer-nav {
  margin-bottom: 20px;
}

.footer-nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-disclaimers {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0;
  text-align: left;
}

.footer-disclaimers .disclaimer {
  color: #f0f0f0;
  margin: 10px 0;
  padding: 0;
  background: transparent;
  border-left: none;
}

.footer-disclaimers .disclaimer p {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.4;
}

.copyright {
  margin-top: 20px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .header-info {
    text-align: center;
  }

  .logo {
    height: 35px;
  }

  .hero {
    flex-direction: column;
  }

  h1 {
    font-size: 2rem;
  }
}
