

.faq-section {
    padding: 80px 60px; 
  }
  
  .faq-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
  
  .faq-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 30px;
    border-top: 10px solid #0a2f4b;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1)
  }
  
  .faq-form h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 28px;
  }
  
  .faq-form p {
    color: #666;
    margin-bottom: 25px;
  }
  
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
  }
  
  .contact-form textarea {
    height: 120px;
    resize: vertical;
  }
  
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
  }
  
  .submit-btn {
    background: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .submit-btn:hover {
    background: #0056b3;
  }
  
  .faq-content {
    flex: 1;
  }
  
  .faq-content h2 {
    color: #0a2f4b;
    margin-bottom: 30px;
    font-size: 28px;
  }
  
  .faq-item {
    margin-bottom: 20px; 
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--accent-color);
  }
  
  .faq-question {
    padding: 15px 20px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #0a2f4b;
  }
  
  .faq-icon {
    color: #0a2f4b;
    transition: transform 0.3s;
  }
  
  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background: #d5f5ec;
    transition: max-height 0.3s ease-out;
  }
  
  .faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }
  
  @media (max-width: 768px) {
    .faq-container {
      flex-direction: column;
      grid-template-columns: 1fr;
    }
    
    .faq-form,
    .faq-content {
      width: 100%;
    }
    .faq-section {
      padding: 20px 20px;
      background: linear-gradient(180deg, var(--background-light-2) 70%, transparent 44%);
  }
  } 