  /* HERO */
  .blog-hero {
      background: linear-gradient(135deg, #4f46e5, #7c3aed);
      color: white;
      text-align: center;
      padding: 140px 20px 110px;
      position: relative;
      overflow: hidden;
  }

  .blog-hero::before {
      content: "";
      position: absolute;
      width: 350px;
      height: 350px;
      background: #22c55e;
      filter: blur(120px);
      opacity: 0.3;
      top: -100px;
      left: -100px;
  }

  .blog-hero h1 {
      font-size: 48px;
      font-weight: 800;
      position: relative;
      z-index: 1;
  }

  .blog-hero p {
      margin-top: 15px;
      font-size: 18px;
      opacity: .9;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 1;
      line-height: 1.8;
  }

  /* BREADCRUMB */
  .breadcrumb-area {
      max-width: 1200px;
      margin: 25px auto 0;
      padding: 0 20px;
      font-size: 14px;
      color: #6b7280;
  }

  .breadcrumb-area a {
      text-decoration: none;
      color: #6366f1;
      font-weight: 600;
  }

  .breadcrumb-area span {
      margin: 0 8px;
  }

  /* CONTENT */
  .content-section {
      padding: 70px 20px 20px;
  }

  .content-section .container {
      max-width: 900px;
      margin: auto;
      text-align: center;
  }

  .content-section h2 {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 18px;
  }

  .content-section p {
      color: #4b5563;
      line-height: 1.9;
      margin-bottom: 18px;
      font-size: 16px;
  }

  /* GRID */
  .bio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
      margin-top: 60px;
      margin-bottom: 60px;
  }

  /* CARD */
  .bio-card {
      background: #ffffff;
      border-radius: 18px;
      overflow: hidden;
      transition: 0.35s;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
      border: 1px solid rgba(99, 102, 241, 0.08);
  }

  .bio-card:hover {
      transform: translateY(-8px);
      border: 1px solid #6366f1;
      box-shadow: 0 20px 60px rgba(99, 102, 241, 0.16);
  }

  /* IMAGE */
  .bio-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
  }

  /* CONTENT */
  .bio-content {
      padding: 22px;
  }

  .bio-content h3 {
      font-size: 20px;
      font-weight: 700;
      color: #111827;
  }

  .bio-content p {
      margin-top: 10px;
      color: #6b7280;
      font-size: 14px;
      line-height: 1.7;
  }

  /* BUTTON */
  .bio-btn {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 18px;
      border-radius: 10px;
      background: linear-gradient(135deg, #6366f1, #7c3aed);
      color: white;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
  }

  .bio-btn:hover {
      opacity: 0.92;
      transform: translateY(-2px);
  }


  .faq-section {
      padding: 80px 20px;
      background: #f9fafb;
  }

  .faq-container {
      max-width: 900px;
      margin: auto;
  }

  .faq-title {
      text-align: center;
      font-size: 38px;
      font-weight: 800;
      color: #111827;
      margin-bottom: 40px;
  }

  .faq-box {
      display: flex;
      flex-direction: column;
      gap: 18px;
  }

  .faq-item {
      background: #ffffff;
      border-radius: 18px;
      border: 1px solid #e5e7eb;
      overflow: hidden;
      transition: 0.3s ease;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  }

  .faq-item.active {
      border-color: #8b5cf6;
      box-shadow: 0 10px 30px rgba(139, 92, 246, 0.12);
  }

  .faq-question {
      width: 100%;
      border: none;
      background: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 25px;
      cursor: pointer;
      font-size: 18px;
      font-weight: 700;
      color: #111827;
      text-align: left;
  }

  .faq-question:focus {
      outline: none;
  }

  .faq-icon {
      font-size: 28px;
      color: #8b5cf6;
      transition: 0.3s ease;
  }

  .faq-item.active .faq-icon {
      transform: rotate(45deg);
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      padding: 0 25px;
  }

  .faq-answer p {
      color: #4b5563;
      line-height: 1.8;
      margin: 0;
      padding-bottom: 20px;
  }

  .faq-item.active .faq-answer {
      max-height: 300px;
  }

  @media(max-width:768px) {

      .faq-section {
          padding: 60px 15px;
      }

      .faq-title {
          font-size: 28px;
          line-height: 1.4;
      }

      .faq-question {
          font-size: 16px;
          padding: 18px 20px;
      }

      .faq-answer {
          padding: 0 20px;
      }

      .faq-answer p {
          font-size: 15px;
      }

  }

  /* CONCLUSION */
  .caption-conclusion {
      padding: 60px 20px;
      text-align: center;
  }

  .caption-conclusion .container {
      max-width: 850px;
      margin: auto;
  }

  .caption-conclusion h2 {
      font-size: 34px;
      font-weight: 800;
      margin-bottom: 20px;
  }

  .caption-conclusion p {
      color: #4b5563;
      line-height: 1.9;
  }

  @media(max-width:768px) {

      .blog-hero {
          padding: 120px 20px 90px;
      }

      .blog-hero h1 {
          font-size: 34px;
      }

      .blog-hero p {
          font-size: 16px;
      }

      .content-section h2,
      .faq-section h2,
      .caption-conclusion h2 {
          font-size: 28px;
      }
  }
