.page-header {
        margin-top: 60px;
        padding: 60px 40px;
        background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
        position: relative;
        overflow: hidden;
      }

      .page-header::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(
          circle,
          rgba(45, 91, 255, 0.1) 0%,
          transparent 70%
        );
        top: -200px;
        right: -200px;
        border-radius: 50%;
      }

      .page-header-content {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }

      .breadcrumb {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #ff6b35;
        margin-bottom: 20px;
      }

      .breadcrumb a {
        color: #64748b;
        text-decoration: none;
        transition: color 0.3s;
      }

      .breadcrumb a:hover {
        color: #1e3a8a;
      }

      .page-title {
        font-size: 48px;
        font-weight: 800;
        color: #1e3a8a;
        margin-bottom: 15px;
      }

      .page-subtitle {
        font-size: 18px;
        color: #64748b;
        line-height: 1.6;
        max-width: 700px;
      }

      /* Service Tabs */
      .services-section {
        max-width: 1200px;
        margin: -40px auto 80px;
        padding: 0 40px;
        position: relative;
        z-index: 10;
      }

      .service-tabs {
        background: white;
        border-radius: 20px;
        padding: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        margin-bottom: 40px;
      }

      .tab-button {
        padding: 18px 24px;
        background: transparent;
        border: none;
        border-radius: 14px;
        font-size: 15px;
        font-weight: 600;
        color: #64748b;
        cursor: pointer;
        transition: all 0.3s;
        font-family: "Poppins", sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
      }

      .tab-button:hover {
        background: rgba(45, 91, 255, 0.05);
        color: #2d5bff;
      }

      .tab-button.active {
        background: linear-gradient(135deg, #2d5bff 0%, #1e3a8a 100%);
        color: white;
        box-shadow: 0 4px 15px rgba(45, 91, 255, 0.3);
      }


      /* Service Content */
      .service-content {
        background: white;
        border-radius: 24px;
        padding: 50px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        display: none;
        animation: fadeIn 0.5s ease;
      }

      .service-content.active {
        display: block;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .service-header {
        display: flex;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 40px;
      }

      .service-icon-large {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 48px;
        flex-shrink: 0;
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
      }

      .service-header-text h2 {
        font-size: 36px;
        font-weight: 700;
        color: #1e3a8a;
        margin-bottom: 12px;
      }

      .service-header-text p {
        font-size: 16px;
        color: #64748b;
        line-height: 1.7;
      }

      .service-description {
        background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
        padding: 30px;
        border-radius: 16px;
        margin-bottom: 40px;
      }

      .service-description p {
        font-size: 16px;
        color: #1e3a8a;
        line-height: 1.8;
        margin-bottom: 15px;
      }

      .service-description p:last-child {
        margin-bottom: 0;
      }

      .service-features {
        margin-bottom: 40px;
      }

      .service-features h3 {
        font-size: 24px;
        font-weight: 700;
        color: #1e3a8a;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .feature-item {
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 16px;
        padding: 20px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        transition: all 0.3s;
      }

      .feature-item:hover {
        border-color: #2d5bff;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(45, 91, 255, 0.15);
      }

      .feature-icon {
        width: 45px;
        height: 45px;
        background: rgba(45, 91, 255, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
      }

      .feature-text h4 {
        font-size: 16px;
        font-weight: 600;
        color: #1e3a8a;
        margin-bottom: 5px;
      }

      .feature-text p {
        font-size: 14px;
        color: #64748b;
        line-height: 1.6;
      }

      .service-benefits {
        background: linear-gradient(135deg, #2d5bff 0%, #1e3a8a 100%);
        padding: 40px;
        border-radius: 20px;
        margin-bottom: 40px;
      }

      .service-benefits h3 {
        font-size: 24px;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
      }

      .benefits-list {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }

      .benefits-list li {
        color: white;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .benefits-list li::before {
        content: "✓";
        color: #22c55e;
        font-weight: 700;
        font-size: 20px;
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .service-action {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 30px;
        border-top: 2px solid #e2e8f0;
      }

      .action-info p {
        font-size: 14px;
        color: #64748b;
        margin-bottom: 5px;
      }

      .action-info strong {
        font-size: 18px;
        color: #1e3a8a;
      }

      .btn-download {
        padding: 16px 32px;
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        font-family: "Poppins", sans-serif;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .btn-download:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
      }

      .action-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Button WhatsApp */
.btn-wa {
  padding: 16px 28px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.35);
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45);
}

.wa-icon {
  font-size: 18px;
}


      /* Responsive */
      @media (max-width: 1024px) {
   

        .service-tabs {
          grid-template-columns: repeat(2, 1fr);
        }

        .feature-grid {
          grid-template-columns: 1fr;
        }

        .benefits-list {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 768px) {
  .action-buttons {
    width: 100%;
    flex-direction: column;
  }

  .btn-wa,
  .btn-download {
    width: 100%;
    justify-content: center;
  }

        .page-header {
          padding: 40px 20px;
        }

        .page-title {
          font-size: 32px;
        }

        .services-section {
          padding: 0 20px;
        }

        .service-tabs {
          grid-template-columns: 1fr;
        }

        .service-content {
          padding: 30px 20px;
        }

        .service-header {
          flex-direction: column;
        }

        .service-header-text h2 {
          font-size: 28px;
        }

        .service-action {
          flex-direction: column;
          gap: 20px;
          align-items: flex-start;
        }

        .btn-download {
          width: 100%;
          justify-content: center;
        }
      }