body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #212529;
}

.site-header {
  background: #003366;
  color: white;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  height: 33vh; /* Take up 1/3 of viewport height */
}

.logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.logo {
  max-height: 100%; /* Fills up the vertical space */
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.btn-primary {
  background-color: #007bff;
  color: white;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.hero {
  background: linear-gradient(to right, #003366, #0059b3);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.features {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  background: #ffffff;
}

.feature-image img {
  max-width: 100%;
  border-radius: 8px;
}

.feature-details {
  flex: 1;
  padding: 1rem 2rem;
}

.faq {
  padding: 2rem;
  background: #e6f0ff;
}

.faq ul {
  list-style: none;
  padding-left: 0;
}

.faq li {
  margin-bottom: 1.5rem;
}

.contact {
  background: #ffffff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 600px;
}

.contact-info p {
  margin: 0.5rem 0;
}

input, textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #003366;
  color: white;
}
