* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

    body {
      font-family: "Roboto", sans-serif;
      margin: 0;
      padding: 0;
      background-color: #fff;
    }

    .faq-container {
      max-width: 1164px;
      margin: 0 auto;
      padding: 20px 20px;
    }

    .faq-header {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      margin: 40px 0;
    }

    .faq-icon {
      width: 70px;
      height: 70px;
      object-fit: cover;
    }

    .faq-title {
      font-size: 60px;
      font-weight: 700;
      color: #000000;
    }

    .faq-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .faq-item {
      background: #ffffff;
      border-radius: 16px;
      padding: 16px 40px;
      box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
      transition: box-shadow 0.3s ease;
      overflow: hidden;
    }

    .faq-item:hover {
      box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2);
    }

    .faq-item-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
    }

    .faq-item-number {
      font-size: 24px;
      font-weight: 700;
      color: #000;
      margin-right: 20px;
    }

    .faq-item-question {
      font-size: 18px;
      font-weight: 500;
      color: #000;
      flex: 1;
    }

    .faq-item-icon {
      width: 24px;
      height: 24px;
      transition: transform 0.3s ease;
    }

    .faq-item.open .faq-item-icon {
      transform: rotate(180deg);
    }

    .faq-item-answer {
      max-height: 0;
      overflow: hidden;
      font-size: 16px;
      line-height: 1.5;
      color: #333;
      transition: max-height 0.3s ease;
      padding-top: 10px;
    }

    .faq-item.open .faq-item-answer {
      max-height: 200px;
    }