/* Base styling */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

.top {
  padding: 30px 20px;
  text-align: center;
  background: #e6f0ff;
}

.top h1 {
  font-size: 28px;
  color: #002366;
  margin-bottom: 10px;
}

.top p {
  font-size: 16px;
  max-width: 600px;
  margin: auto;
}

.callbtn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background: #007bff;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.callbtn:hover {
  background: #0056b3;
}

/* More card section */
.more-card {
  padding: 40px 20px;
  background: #ffffff;
}

.more-card .cont {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.more-card img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
}

.more-details {
  max-width: 500px;
}

h2 {
  color: #00509e;
  margin-bottom: 10px;
}

.more-details ul {
  padding-left: 20px;
}

.more-details ul li {
  margin-bottom: 8px;
}

/* FAQ Section */
.faq-section {
  background: #f7f9fc;
  padding: 30px 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.faq-section h4 {
  margin-top: 20px;
  color: #004080;
}

.faq-section p {
  margin-left: 10px;
}

/* Form & Fleet section styles assumed to be in includes — ensure responsiveness there too */

/* Responsive */
@media screen and (max-width: 768px) {
  .top h1 {
    font-size: 22px;
  }

  .top p, .callbtn {
    font-size: 15px;
  }

  .more-card .cont {
    flex-direction: column;
  }

  h2 {
    font-size: 20px;
  }

  .faq-section h2 {
    font-size: 22px;
  }

  .faq-section h4 {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .callbtn {
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
  }

  .more-card {
    padding: 20px 15px;
  }

  .faq-section {
    padding: 20px 15px;
  }
}
