
    @font-face {
      font-family: 'Gilroy';
      src: url('../assets/fonts/Gilroy-800.woff2') format('woff2');
      font-weight: 800;
    }
    @font-face {
      font-family: 'Gilroy';
      src: url('../assets/fonts/Gilroy-500.woff2') format('woff2');
      font-weight: 500;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Gilroy', 'Helvetica Neue', Arial, sans-serif;
      font-weight: 500;
      background: #f5f6f8;
      color: #1a1a2e;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* HEADER */
    header {
      background: #ffffff;
      border-bottom: 1px solid #e2e5ea;
      padding: 20px 48px;
      display: flex;
      align-items: center;
    }
    header img {
      height: 52px;
      width: auto;
    }

    /* HERO */
    .hero {
      background: linear-gradient(135deg, #0d1b3e 0%, #1a3272 60%, #2a4db5 100%);
      color: #fff;
      padding: 72px 48px 60px;
      text-align: center;
    }
    .hero h1 {
      font-weight: 800;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      letter-spacing: -0.5px;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .hero h1 span { color: #4d7cff; }
    .hero p {
      font-size: 1.1rem;
      opacity: 0.85;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* CARDS SECTION */
    .section {
      padding: 60px 48px;
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
    }
    .section-label {
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #4d7cff;
      margin-bottom: 10px;
    }
    .section-title {
      font-size: 1.5rem;
      font-weight: 800;
      color: #0d1b3e;
      margin-bottom: 36px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
    }

    .card {
      background: #ffffff;
      border-radius: 16px;
      border: 1px solid #e2e5ea;
      padding: 36px 32px 32px;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      position: relative;
      overflow: hidden;
    }
    .card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, #4d7cff, #2a4db5);
      opacity: 0;
      transition: opacity 0.2s ease;
    }
    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(13,27,62,0.12);
      border-color: #c0ccf5;
    }
    .card:hover::before { opacity: 1; }

    .card-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 24px;
    }
    .card-icon.blue { background: #eef2ff; }
    .card-icon.navy { background: #e8edf7; }
    .card-icon.green { background: #e6f7ec; }
    .card-icon.orange { background: #fff0e6; }

    .card-tag {
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #4d7cff;
      margin-bottom: 8px;
    }
    .card h2 {
      font-size: 1.2rem;
      font-weight: 800;
      color: #0d1b3e;
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .card p {
      font-size: 0.93rem;
      color: #4a5568;
      line-height: 1.7;
      flex: 1;
    }
    .card-cta {
      margin-top: 24px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.88rem;
      font-weight: 800;
      color: #2a4db5;
    }
    .card-cta svg {
      transition: transform 0.2s ease;
    }
    .card:hover .card-cta svg {
      transform: translateX(4px);
    }

    /* FOOTER */
    footer {
      margin-top: auto;
      background: #0d1b3e;
      color: rgba(255,255,255,0.5);
      text-align: center;
      padding: 24px 48px;
      font-size: 0.82rem;
    }
    footer strong { color: rgba(255,255,255,0.8); }

    /* Mobile responsive styles */
    @media (max-width: 768px) {
      header {
        padding: 16px 24px;
        flex-wrap: wrap;
      }
      header img {
        height: 44px;
      }
      .hero {
        padding: 48px 24px 48px;
      }
      .hero h1 {
        font-size: 1.6rem;
      }
      .section {
        padding: 40px 24px;
      }
      .cards {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .card {
        padding: 28px 24px 24px;
      }
      footer {
        padding: 20px 24px;
        font-size: 0.78rem;
      }
    }

    @media (max-width: 600px) {
      header { padding: 14px 20px; }
      header img { height: 40px; }
      .hero {
        padding: 40px 20px 36px;
      }
      .hero h1 {
        font-size: 1.4rem;
        margin-bottom: 12px;
      }
      .hero p {
        font-size: 0.95rem;
      }
      .section {
        padding: 32px 20px;
      }
      .section-title {
        font-size: 1.25rem;
        margin-bottom: 24px;
      }
      .card {
        padding: 24px 20px 20px;
      }
      .card-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
      }
      .card h2 {
        font-size: 1.1rem;
      }
      footer {
        padding: 18px 20px;
      }
    }

    @media (max-width: 400px) {
      header { padding: 12px 16px; }
      .hero { padding: 32px 16px 28px; }
      .hero h1 { font-size: 1.25rem; }
      .section { padding: 28px 16px; }
      .card { padding: 20px 16px 16px; }
    }
  