 body {
      font-family: 'Segoe UI', sans-serif;
      scroll-behavior: smooth;
    }
    header {
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .hero {
      background: linear-gradient(to right, #1e3c72, #2a5298);
      color: white;
      padding: 100px 0;
      text-align: center;
    }
    .icon-box i {
      font-size: 2rem;
      color: #2a5298;
    }
    section {
      padding: 60px 0;
    }
    .bg-light-gray {
      background-color: #f9f9f9;
    }
    footer {
      background-color: #2a5298;
      color: white;
      padding: 40px 0;
    }
    .animate {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease-in-out;
    }
    .animate.visible {
      opacity: 1;
      transform: none;
    }