/* FAQ Page Styles */

/* Main Title */
.faq-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
  }
  
  .faq-main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c40d2e;
  }
  
  /* FAQ Container */
  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* FAQ Category */
  .faq-category {
    margin-bottom: 3rem;
  }
  
  .faq-category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #8f001d;
  }
  
  /* FAQ Item */
  .faq-item {
    margin-bottom: 1.25rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.25rem;
  }
  
  .faq-item.active .faq-question {
    background-color: #f8f9fa;
  }
  
  .faq-question {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    background-color: white;
    transition: background-color 0.3s ease;
  }
  
  .faq-question:hover {
    background-color: #f8f9fa;
  }
  
  .faq-question-icon {
    margin-right: 1rem;
    color: #8f001d;
    flex-shrink: 0;
  }
  
  .faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
    padding: 0 1.25rem;
  }
  
  .faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
  }
  
  .faq-answer a {
    color: #8f001d;
    text-decoration: none;
    font-weight: 500;
  }
  
  .faq-answer a:hover {
    text-decoration: underline;
  }
  
  /* Contact Link */
  .contact-link-wrapper {
    display: inline-block;
  }
  
  .contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8f001d;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }
  
  .contact-link svg {
    margin-right: 0.5rem;
  }
  
  .contact-link:hover {
    color: #6b0016;
    transform: translateY(-2px);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .faq-main-title {
      font-size: 2rem;
    }
  
    .faq-category-title {
      font-size: 1.5rem;
    }
  
    .faq-question h3 {
      font-size: 1.1rem;
    }
  }
  