body {
      margin: 0;
      background: #f5f6f7;
      font-family: 'Inter', system-ui, sans-serif !important;
      color: #111827;
    }

    .hero {
      background: linear-gradient(135deg, #551fbd 0%, #3e1492 60%, #69e4f5 100%);
      color: white;
      padding: 60px 0 40px;
      text-align: center;
    }

    .hero h1 {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .custom2 {
      color: #69e4f5;
    }

    .contact-intro {
      padding: 60px 0 40px;
      text-align: center;
    }

    .contact-intro h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .custom1 {
      color: #010609;
    }

    .contact-intro p {
      font-size: 18px;
      color: #7f8c8d;
      max-width: 800px;
      margin: 0 auto;
    }

    .divider {
      height: 2px;
      background: linear-gradient(90deg, transparent, #69e4f5, transparent);
      margin: 40px auto;
      max-width: 200px;
    }

    main.page-main {
      padding: 24px 16px 40px;
    }

    .page-shell {
      max-width: 1100px;
      margin: 24px auto 0;
    }

    .page-box {
      position: relative;
      padding: 28px 32px 30px;
      background: #ffffff;
      border-radius: 24px;
      box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
      overflow: hidden;
    }

    .page-box::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 6px;
      background: #551fbd;
      border-radius: 24px 24px 0 0;
    }

    .page-box h1 {
      margin-top: 8px;
      margin-bottom: 16px;
      color: #551fbd;
      font-size: 28px;
    }

    .page-box p {
      line-height: 1.7;
      margin: 0 0 16px;
    }

    .service-card {
      padding: 18px 18px 16px;
      background: #f7f5ff;
      border-radius: 14px;
      border: 1px solid #e0ddff;
      margin-bottom: 14px;
    }

    .service-card h3 {
      margin: 0 0 6px;
      color: #551fbd;
      font-size: 18px;
    }

    .service-card p {
      margin: 0;
      font-size: 14px;
      line-height: 1.6;
    }

    .service-btn {
      display: inline-block;
      margin-top: 12px;
      padding: 10px 16px;
      background: #551fbd;
      color: #fff;
      text-decoration: none;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.25s ease;
    }

    .service-btn:hover {
      background: #3e1492;
      transform: translateY(-1px);
    }.skeleton {
  border-radius: 8px;
}
.skeleton-title {
      height: 34px;
      width: 60%;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .skeleton-text {
      height: 18px;
      width: 90%;
      margin-bottom: 25px;
      border-radius: 4px;
    }

    .skeleton-service-card {
      height: 90px;
      margin-bottom: 14px;
      border-radius: 14px;
    }

    .content-hidden {
      display: none !important;
      opacity: 0;
    }

    .content-reveal {
      display: block !important;
      animation: fadeIn 0.4s ease forwards;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(5px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
