/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  } */
  
  .page-title {
    text-align: center;
    color: #333;
    margin: 20px 0;
    font-size: 2.5em;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .faq-container {
    margin: 20px 0;
  }
  
  .faq-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  
  .faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
  }
  
  .faq-toggle {
    display: none;
  }
  
  .faq-question {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    background-color: #f5f5f5;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s ease;
  }
  
  .faq-question:hover {
    background-color: #e0e0e0;
  }
  
  .faq-question i {
    margin-right: 10px;
  }
  
  .faq-answer {
    padding: 15px;
    display: none;
    font-size: 0.95em;
    color: #666;
  }
  
  .faq-toggle:checked + .faq-question + .faq-answer {
    display: block;
  }
  
  .dos-donts {
    margin-top: 40px;
  }
  
  .dos-donts h2 {
    color: #333;
    font-size: 2em;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  
  .dos-donts h3 {
    color: #333;
    font-size: 1.5em;
    margin-top: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
  }
  
  .dos-donts ul {
    list-style: disc;
    margin: 10px 0;
    padding-left: 20px;
  }
  
  .dos-donts li {
    margin-bottom: 10px;
    line-height: 1.6;
  }
  
  .dos-donts li:last-child {
    margin-bottom: 0;
  }
  
  @media (max-width: 768px) {
    .container {
      width: 95%;
      padding: 15px;
    }
  
    .page-title {
      font-size: 2em;
    }
  
    .faq-question {
      font-size: 1.1em;
    }
  
    .faq-answer {
      font-size: 0.9em;
    }
  
    .dos-donts h2 {
      font-size: 1.8em;
    }
  
    .dos-donts h3 {
      font-size: 1.3em;
    }
  }
  