    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins';
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: #f8fafc;
      color: #0f172a;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1200px, 92%);
      margin: 0 auto;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    }

    .navbar {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-img {
      width: 52px;
      height: 52px;
      object-fit: contain;
    }

    .logo-text h3 {
      font-size: 18px;
      line-height: 1.1;
      color: #0f172a;
      font-weight: 800;
    }

    .logo-text p {
      font-size: 13px;
      color: #475569;
      margin-top: 2px;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    nav a {
      color: #334155;
      font-size: 15px;
      font-weight: 500;
      transition: 0.25s ease;
    }

    nav a:hover,
    nav a.active {
      color: #2563eb;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 22px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      transition: 0.3s ease;
      border: 1px solid transparent;
    }

    .btn-primary {
      background: linear-gradient(135deg, #2563eb, #0ea5e9);
      color: #fff;
      box-shadow: 0 12px 30px rgba(37, 99, 235, 0.22);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 35px rgba(37, 99, 235, 0.28);
    }

    .btn-outline {
      background: #fff;
      color: #0f172a;
      border-color: #cbd5e1;
    }

    .btn-outline:hover {
      transform: translateY(-2px);
      border-color: #94a3b8;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 90px 0 70px;
      background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.14), transparent 35%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.12), transparent 30%),
        linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
    }

    .hero-badge,
    .mini-title {
      display: inline-block;
      padding: 7px 14px;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.1);
      color: #2563eb;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.3px;
      margin-bottom: 18px;
    }

    .hero-text h1 {
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.08;
      margin-bottom: 18px;
      font-weight: 800;
      color: #0f172a;
    }

    .hero-text h1 span {
      color: #2563eb;
    }

    .hero-text p {
      font-size: 16px;
      color: #475569;
      max-width: 620px;
      margin-bottom: 26px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 28px;
      padding: 20px;
      box-shadow: 0 30px 60px rgba(15, 23, 42, 0.10);
      position: relative;
    }

    .hero-card img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 22px;
    }

    .since-box {
      position: absolute;
      left: 24px;
      bottom: 24px;
      background: rgba(255, 255, 255, 0.95);
      padding: 14px 18px;
      border-radius: 18px;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    }

    .since-box h3 {
      color: #2563eb;
      font-size: 26px;
      line-height: 1;
      margin-bottom: 4px;
    }

    .since-box p {
      color: #475569;
      font-size: 13px;
    }

    section {
      padding: 85px 0;
    }

    .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 50px;
    }

    .section-head h2 {
      font-size: clamp(28px, 4vw, 42px);
      color: #0f172a;
      margin-bottom: 12px;
      line-height: 1.15;
    }

    .section-head p {
      color: #475569;
      font-size: 16px;
    }

    .support-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    .support-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 24px;
      padding: 30px;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
      transition: 0.3s ease;
    }

    .support-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
    }

    .support-number {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, #2563eb, #0ea5e9);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 18px;
      margin-bottom: 18px;
      box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
    }

    .support-card h3 {
      font-size: 22px;
      color: #0f172a;
      margin-bottom: 12px;
    }

    .support-card p {
      color: #475569;
      margin-bottom: 22px;
      font-size: 15px;
    }

    .support-extra {
      background: linear-gradient(135deg, #0f172a, #1e293b);
      color: #fff;
    }

    .support-extra .mini-title {
      background: rgba(255, 255, 255, 0.12);
      color: #bfdbfe;
    }

    .support-extra-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: center;
    }

    .support-extra h2 {
      font-size: clamp(28px, 4vw, 40px);
      margin-bottom: 14px;
      line-height: 1.15;
    }

    .support-extra p {
      color: #cbd5e1;
      font-size: 16px;
      margin-bottom: 24px;
      max-width: 620px;
    }

    .info-panel {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 28px;
      border-radius: 24px;
      backdrop-filter: blur(10px);
    }

    .info-panel h3 {
      font-size: 24px;
      margin-bottom: 16px;
    }

    .info-panel p {
      margin-bottom: 10px;
      color: #e2e8f0;
    }

    .info-panel span {
      color: #93c5fd;
      font-weight: 700;
    }
    

    footer {
      background: #0f172a;
      color: #e2e8f0;
      padding: 65px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1fr;
      gap: 30px;
    }

    footer h3,
    footer h4 {
      color: #fff;
      margin-bottom: 14px;
    }

    footer p,
    .footer-links a {
      color: #cbd5e1;
      font-size: 15px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .copyright {
      margin-top: 40px;
      text-align: center;
      padding: 18px 12px;
      border-top: 1px solid rgba(148, 163, 184, 0.18);
      color: #94a3b8;
      font-size: 14px;
    }

    @media (max-width: 992px) {
      .hero-content,
      .support-grid,
      .support-extra-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .navbar {
        flex-direction: column;
        padding: 14px 0;
      }

      nav {
        justify-content: center;
      }

      .hero-card img {
        height: 320px;
      }
    }

    @media (max-width: 640px) {
      .hero {
        padding: 70px 0 50px;
      }

      section {
        padding: 65px 0;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
      }

      nav {
        gap: 14px;
      }

      .logo-text h3 {
        font-size: 16px;
      }
    }