/* CSS for about.html - Centering the vision-mission section */

.vision-mission {
    display: flex;
    flex-direction: column; /* ubah dari row jadi column */
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.mission,
.vision {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mission h3,
.vision h3 {
    color: #333;
    margin-bottom: 1rem;
}

.mission p,
.vision p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Styles */
.faq {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .faq-item {
      margin-bottom: 1.2rem;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-item h3 {
      margin: 0;
      padding: 1rem;
      cursor: pointer;
      background-color: #f7f7f7;
      border: 1px solid #eee;
      border-radius: 8px;
      position: relative;
      font-weight: 600;
      color: #333;
      transition: background-color 0.3s ease;
    }

    .faq-item h3:hover {
      background-color: #f1f1f1;
    }

    .faq-item h3::after {
      content: '+';
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: #666;
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }

    .faq-item.active h3::after {
      content: '-';
      transform: translateY(-50%) rotate(180deg);
    }

    .faq-item p {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      padding: 0 1rem;
      line-height: 1.6;
      color: #555;
      background-color: #fafafa;
      border-top: 1px solid #eee;
      border-radius: 0 0 8px 8px;
      transition: all 0.4s ease;
    }

    .faq-item.active p {
      max-height: 300px;
      opacity: 1;
      padding: 1rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .faq-item h3 {
        font-size: 1rem;
      }

      .faq-item p {
        font-size: 0.95rem;
      }
    }