.faq-section {
    padding: 60px 20px;
    background-color: #fff;
    font-family: Arial, sans-serif;
  }
  
  .faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  
  .faq-content {
    flex: 1 1 600px;
    margin-right: 40px;
  }
  
  .faq-subtitle {
    color: #008080;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .faq-title {
    font-size: 36px;
    margin: 0 0 10px;
  }
  
  .faq-title strong {
    font-weight: 800;
  }
  
  .faq-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
  }
  
  .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .faq-item {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .faq-item h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
  }
  
  .faq-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    display: none;
  }
  
  .faq-item.active p {
    display: block;
  }
  
  .faq-image {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .faq-image img {
    max-width: 100%;
    border-radius: 50%;
    border: 10px solid #e0f0ec;
  }
  