body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f8f8f8;
  color: #333333;
  margin: 0;
  padding: 0;
}

header {
  background-color: #ffffff;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header img {
  max-width: 200px;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #10467f;
  color: white;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #ff9500;
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 3rem;
}

.features .feature {
  width: 30%;
  background-color: #ffffff;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.features .feature:hover {
  transform: translateY(-10px);
}

.features i {
  font-size: 2.5rem;
  color: #10467f;
  margin-bottom: 1rem;
}

.features h3 {
  font-size: 1.5rem;
  color: #10467f;
}

.features p {
  font-size: 1rem;
  color: #333333;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  font-size: 1.8rem;
  color: #10467f;
  text-align: center;
  margin-bottom: 1rem;
}

.form-container form {
  display: flex;
  flex-direction: column;
}

.form-container input {
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.form-container input[type="submit"] {
  background-color: #007aff;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  border-radius: 5px;
  padding: 1rem;
}

.form-container input[type="submit"]:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.disclaimer {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1rem;
}

footer {
  background-color: #10467f;
  color: #ffffff;
  padding: 2rem;
  text-align: center;
}

footer p {
  font-size: 0.9rem;
}

footer img {
  max-width: 150px;
  margin-bottom: 1rem;
}

/* Style for Key Features list */
.key-features-list {
  list-style-type: none;  /* Remove default bullet points */
  padding: 0;
  text-align: left;  /* Justify the list to the left */
}

/* Align icons and text vertically and horizontally */
.key-features-list li {
  display: flex;
  align-items: center;      /* Vertical alignment of checkmark and text */
  justify-content: flex-start; /* Horizontal alignment of checkmark and text */
  margin-bottom: 10px;  /* Spacing between list items */
}

/* Styling the checkmark icon */
.key-features-list i {
  color: #10467f;       /* Icon color matching the theme */
  font-size: 1.2rem;    /* Small icon size */
  margin-right: 10px;   /* Space between the icon and the text */
}

/* General feature box style (optional if needed) */
.features .feature {
  background-color: #ffffff;    /* White tiled background */
  padding: 2rem;
  text-align: left;             /* Ensure text is aligned to the left */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);  /* Box shadow for the tile effect */
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

/* Key Features list */
.key-features-list {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.key-features-list li {
  display: flex;
  align-items: center; /* Vertical alignment */
  justify-content: flex-start;
  margin-bottom: 10px;
  padding: 10px 0;
  line-height: 1.4;
}

/* Checkmark icon */
.key-features-list i {
  color: #10467f;
  font-size: 1.2rem;
  margin-right: 10px;
  position: relative;
  top: 0.2em; /* Fine-tune icon vertical position to align better with text */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .key-features-list i {
    font-size: 1rem; /* Scale down the icon on smaller screens */
    top: 0.15em; /* Adjust for smaller screens */
  }
  .key-features-list li {
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .key-features-list i {
    font-size: 0.8rem; /* Further scaling for mobile */
    top: 0.1em;
  }
  .key-features-list li {
    margin-bottom: 6px;
  }
}
