/* Quote Section: bg-gray-50 min-h-[300px] flex items-center */
.quote-section {
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #f9fafb;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Quote Container: max-w-6xl mx-auto px-4 sm:px-6 lg:px-8 grid grid-cols-1 lg:grid-cols-2 gap-8 */
.quote-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .quote-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .quote-container {
    padding-left: 2rem;
    padding-right: 2rem;
    grid-template-columns: 1fr 1fr;
  }
}

/* FAQ Section: space-y-6 */
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* FAQ Item: flex items-center space-x-4 */
.faq-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* FAQ Icon: w-12 h-12 bg-yellow-400 rounded-full flex items-center justify-center text-white text-xl font-bold shrink-0 */
.faq-icon {
  width: 3rem;
  height: 3rem;
  background-color: #facc15;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  gap: 0.5rem;
}

/* FAQ Content */
.faq-content h3 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.faq-content p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #4b5563;
  margin-top: 0.55rem;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 0;
  margin-left: 0;
 padding-left: 0;
}

/* Quote Form Section: bg-[#0B1D3A] p-6 sm:p-8 rounded-lg text-white shadow-custom */
.quote-form-section {
  background-color: #0b1d3a;
  padding: 1.5rem;
  border-radius: 0.5rem;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* Assuming shadow-custom as Tailwind's shadow-md */
}

@media (min-width: 640px) {
  .quote-form-section {
    padding: 2rem;
  }
}

/* Form Heading: text-yellow-400 text-xl sm:text-2xl font-bold mb-6 text-center */
.quote-form-section h2 {
  color: #facc15;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .quote-form-section h2 {
    font-size: 1.5rem;
  }
}

/* Form Grid: grid sm:grid-cols-2 gap-4 */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Form Group */
.form-group input,
.form-group textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9ca3af;
  padding: 0.5rem 0.75rem;
  color: #ffffff;
  outline: none;
  font-size: 1rem;
  line-height: 1.5rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #d1d5db;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #facc15;
}

.form-group textarea {
  resize: none;
  height: 6rem; /* Approximating rows={4} */
}

/* Full-width: sm:col-span-2 */
.form-group.full-width {
  grid-column: span 1;
}

@media (min-width: 640px) {
  .form-group.full-width {
    grid-column: span 2;
  }
}

/* Error: text-red-400 text-sm mt-1 */
.error {
  color: #f87171;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Submit Button: bg-yellow-400 text-black font-semibold py-2 px-6 rounded-md hover:bg-yellow-500 transition-colors duration-300 */
.submit-button {
  background-color: #facc15;
  color: #000000;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
}

.submit-button:hover {
  background-color: #eab308;
}

.submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Status Message: mt-4 flex items-center space-x-2 p-3 rounded-md */
.status-message {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.375rem;
}

.status-success {
  background-color: #dcfce7;
  color: #15803d;
}

.status-error {
  background-color: #fee2e2;
  color: #b91c1c;
}

.status-message svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Logo Styling */
.logo {
  display: block;
  margin: 1rem auto 0;
  max-width: 150px; /* Adjust as needed */
}
#statusText{
  margin-left: 130px;
  margin-top: 15px;
  color: #000000;

}