/* faq.css */
* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .faq {
    min-height: 100vh;
    background-color: #f9fafb;
  }
  .faq__contact-info span a {
    color : white;
    text-decoration: none;
  }
  .faq__header--centered {
    text-align: center;
    padding: 40px 0;
    background-color: #f8f9fa;
  }
  
  .faq__header--centered h1 {
    font-size: 2.5rem;
    color: #1e266d;
  }
  
  .faq__content {
    display: flex;
    justify-content: center;
    padding: 4rem 0;
    width: 100%;
  }
  
  .faq__wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .faq__title {
    font-size: 2rem;
    font-weight: bold;
    color: #1e266d;
    margin-bottom: 1rem;
  }
  
  .faq__description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .faq__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .faq__item {
    border: 1px solid #eee;
    border-radius: 0.5rem;
    overflow: hidden;
    background: white;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .faq__item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .faq__question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    font-size: 1rem;
  }
  
  .faq__question:hover {
    background-color: #f9fafb;
  }
  
  .faq__question-text {
    font-weight: 500;
    color: #1e266d;
  }
  
  .faq__icon {
    font-size: 1.5rem;
    color: #1e266d;
    transition: transform 0.3s ease;
    font-weight: bold;
  }
  
  .faq__icon--open {
    transform: rotate(180deg);
  }
  
  .faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f9fafb;
    border-top: 1px solid #eee;
  }
  
  .faq__answer--open {
    max-height: 200px;
    padding: 1.5rem;
  }
  
  .faq__answer-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
  }
  
  .faq__sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .faq__contact-card {
    background: linear-gradient(135deg, #1e266d 0%, #3730a3 100%);
    color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
  }
  
  .faq__contact-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
  }
  
  .faq__contact-icon svg {
    color: #93c5fd;
  }
  
  .faq__contact-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
  
  .faq__contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .faq__contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
  }
  
  .faq__contact-label {
    font-size: 1rem;
    opacity: 0.8;
  }
  
  .faq__form-section {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #eee;
  }
  
  .faq__form-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #1e266d;
    margin-bottom: 2rem;
  }
  
  .faq__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .faq__form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .faq__form-input {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .faq__form-input:focus {
    outline: none;
    border-color: #1e266d;
    box-shadow: 0 0 0 3px rgba(30, 38, 109, 0.1);
  }
  
  .faq__form-input--full {
    width: 100%;
  }
  
  .faq__form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .faq__form-textarea:focus {
    outline: none;
    border-color: #1e266d;
    box-shadow: 0 0 0 3px rgba(30, 38, 109, 0.1);
  }
  
  .faq__form-submit {
    background-color: #1e266d;
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
  }
  
  .read-more{
    margin-top : 30px;
  }
  
  .faq__form-submit:hover {
    background-color: #162050;
    transform: translateY(-1px);
  }
  
  .faq__form-submit:active {
    transform: translateY(0);
  }
  
  @media (max-width: 1024px) {
    .faq__wrapper {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .faq__wrapper {
      padding: 0 1rem;
    }
    
    .faq__title {
      font-size: 1.5rem;
    }
    
    .faq__question {
      padding: 1rem;
    }
    
    .faq__answer--open {
      padding: 1rem;
    }
    
    .faq__contact-card {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 600px) {
    .faq__title {
      font-size: 1.25rem;
    }
    
    .faq__question {
      font-size: 0.9rem;
    }
  }