    body {
      font-family: "DM Sans", sans-serif;
      margin: 0;
      padding: 0;
      background: #0b0e17;
      color: #fff;
    }

    .section {
      padding: 80px 20px;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      animation: fadeIn 0.8s ease forwards;
      opacity: 0;
    }

    .subtitle {
      font-size: 1.2rem;
      color: #b8b8c8;
      max-width: 600px;
      margin-bottom: 40px;
      animation: fadeIn 1s ease forwards;
      opacity: 0;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }

    .service-card {
      background: #141824;
      border-radius: 18px;
      padding: 28px;
      border: 1px solid rgba(255,255,255,0.06);
      box-shadow: 0 10px 30px rgba(0,0,0,0.4);
      position: relative;
      overflow: hidden;
      transform: translateY(20px);
      opacity: 0;
      animation: floatUp 0.8s ease forwards;
    }

    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
    .service-card:nth-child(6) { animation-delay: 0.6s; }
    .service-card:nth-child(7) { animation-delay: 0.7s; }
    .service-card:nth-child(8) { animation-delay: 0.8s; }
    .service-card:nth-child(9) { animation-delay: 0.9s; }
    .service-card:nth-child(10) { animation-delay: 1s; }
    .service-card:nth-child(11) { animation-delay: 1.1s; }
    .service-card:nth-child(12) { animation-delay: 1.2s; }

    .icon {
      font-size: 48px;
      margin-bottom: 14px;
      display: inline-block;
      transition: transform 0.3s ease;
    }

    .service-card:hover .icon {
      transform: scale(1.15) rotate(4deg);
    }

    h3 {
      margin: 0 0 10px;
      font-size: 1.4rem;
    }

    p {
      margin: 0;
      color: #c7c7d4;
      line-height: 1.5;
    }

    @keyframes fadeIn {
      to { opacity: 1; }
    }

    @keyframes floatUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }