/* FAQ Items */
.faq-section {
  margin-bottom: 60px;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left-color: #2c5282;
}

.faq-question {
  width: 100%;
  padding: 25px;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1a202c;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-question:focus {
  outline: 2px solid #2c5282;
  outline-offset: -2px;
}

.question-text {
  flex: 1;
  text-align: left;
  padding-right: 20px;
}

.toggle-indicator {
  color: #2c5282;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  min-width: 20px;
  text-align: center;
}

.faq-question.active .toggle-indicator {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f8fafc;
}

.faq-answer.show {
  padding: 0 25px 30px 25px;
  max-height: 2000px;
}

.answer-content {
  padding-top: 20px;
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.8;
}

.answer-content p {
  margin-bottom: 15px;
}

.answer-content ul,
.answer-content ol {
  padding-left: 25px;
  margin: 15px 0;
}

.answer-content li {
  margin-bottom: 10px;
  padding-left: 5px;
}

.highlight {
  background: #edf2f7;
  padding: 20px;
  border-radius: 6px;
  margin: 20px 0;
  border-left: 3px solid #2c5282;
}

.highlight p {
  margin: 0;
  font-style: italic;
  color: #2d3748;
}

/* Contact Section */
.contact-section {
  background: white;
  border-radius: 8px;
  padding: 40px;
  margin-top: 60px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #2c5282;
}

.contact-section h2 {
  color: #1a202c;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
}

.contact-section > p {
  text-align: center;
  color: #718096;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.contact-item {
  padding: 20px;
  background: #f8fafc;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.contact-item strong {
  display: block;
  color: #2d3748;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-detail {
  color: #4a5568;
  font-size: 1.05rem;
}

.business-hours {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
  color: #718096;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 40px 0;
    margin-bottom: 30px;
  }

  .header h1 {
    font-size: 2.2rem;
  }

  .header p {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .faq-question {
    padding: 20px;
    font-size: 1.1rem;
  }

  .faq-answer.show {
    padding: 0 20px 25px 20px;
  }

  .contact-section {
    padding: 30px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 18px;
    font-size: 1rem;
  }

  .answer-content {
    font-size: 1rem;
  }

  .toggle-indicator {
    font-size: 1.3rem;
  }
}

/* Print Styles */
@media print {
  body {
    background: white;
    color: black;
  }

  .header {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
    border-bottom: 2px solid #ccc;
  }

  .header p {
    color: #666 !important;
  }

  .faq-item {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    break-inside: avoid;
  }

  .faq-answer {
    max-height: none !important;
    display: block !important;
    padding: 20px !important;
  }

  .contact-section {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }

  .faq-question {
    color: black !important;
  }
}
