  body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
    }
    .navbar {
      transition: all 0.3s ease;
    }
    .navbar.scrolled {
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      background: #fff !important;
    }
    .hero {
      background: linear-gradient(135deg, #f9fafc, #eef4fb);
    }
    .hero h1 {
      font-size: 2.5rem;
      line-height: 1.3;
    }
    .card {
      border: none;
      border-radius: 12px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    footer {
      background: #111 !important;
    }
    footer h5 {
      font-weight: 600;
    }
    footer p {
      margin: 0;
      font-size: 0.9rem;
      color: #aaa !important;
    }

    /* Card Styling */
    .card-hover {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      border-radius: 12px;
    }
    .card-hover:hover {
      transform: translateY(-6px);
      box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    }
    .card-title {
      font-size: 1.2rem;
    }
    .section-title {
      font-weight: 700;
      color: #1a237e;
    }
    .section-subtitle {
      color: #6c757d;
    }
    .badge {
      font-size: 0.75rem;
    }

    /* Section Backgrounds */
    .section-light {
      background: #f9fafc;
    }
    .section-alt {
      background: #fff;
    }

    /* CTA Section */
    .cta-section {
      background: #f9a825;
      color: #fff;
      padding: 60px 0;
      text-align: center;
    }
    .cta-section .btn {
      background: #fff;
      color: #f9a825;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 50px;
    }