/* Fleet Management Banner Section */
.fleet-banner-section {
  background-color: #f8f9fa;
  padding: 2rem;
  text-align: center;
}

.fleet-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.fleet-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #2d3748;
}

.fleet-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: #4a5568;
}

.fleet-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* FAQ Section */
.fleet-faq-section {
  padding: 2rem 2rem;
  background-color: white;
}

.faq-container {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.fleet-faq-item {
  display: contents;
}

.faq-questions-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-mobile-answer {
  display: none;
}

.faq-question-item {
  padding: 0.85rem 1.5rem;
  background-color: #f7fafc;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-radius: 0.5rem;
}

.faq-question-item:hover {
  background-color: #edf2f7;
  border-left-color: #4299e1;
}

.faq-question-item.active {
  background-color: #e6f7ff;
  border-left-color: #0066cc;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
}

.question-number {
  font-weight: 700;
  color: #0066cc;
  font-size: 1rem;
  flex-shrink: 0;
}

.question-text {
  font-size: 1rem;
  font-weight: 500;
  color: #2d3748;
  line-height: 1.5;
}

.faq-answer-box {
  background-color: #f8f9fa;
  border-radius: 0.75rem;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  min-height: 300px;
}

.faq-answer-content {
  display: none;
}

.faq-answer-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.answer-question {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.answer-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin: 0;
}

/* CTA Section */
.fleet-cta-section {
  background-color: #f8f9fa;
  padding: 5rem 2rem;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: #4a5568;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.2rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .fleet-banner-section {
    padding: 4rem 1.5rem;
  }

  .fleet-title {
    font-size: 2.2rem;
  }

  .fleet-subtitle {
    font-size: 1.1rem;
  }

  .fleet-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-large {
    width: 100%;
  }

  .fleet-faq-section {
    padding: 4rem 1.5rem;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .fleet-faq-item {
    display: block;
    /* margin-bottom: 0.5rm; */
  }
  
  .faq-question-item {
    margin-bottom: 0;
  }
  
  .faq-mobile-answer {
    display: none;
    background-color: #f0f4f8;
    padding: 1.25rem;
    margin-top: 0.5rem;
    border-radius: 0.5rem;
    animation: slideDown 0.3s ease;
  }
  
  .faq-mobile-answer.active {
    display: block;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      max-height: 0;
      padding-top: 0;
      padding-bottom: 0;
    }
    to {
      opacity: 1;
      max-height: 500px;
      padding-top: 1.25rem;
      padding-bottom: 1.25rem;
    }
  }
  
  .faq-mobile-answer .answer-text {
    font-size: 0.95rem;
    margin: 0;
    color: #4a5568;
    line-height: 1.7;
  }

  .faq-answer-box {
    display: none;
  }

  .question-text {
    font-size: 0.95rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .section-title p {
    font-size: 1.1rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }

  .fleet-cta-section {
    padding: 4rem 1.5rem;
  }
}
