
        {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          font-family: 'Inter', sans-serif;
        }

        body, html {
          height: 100%;
          background: #f9f9f9;
          color: #333;
        }

        header {
          background: #003366;
          color: white;
          padding: 1rem 2rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
        }

        header img {
          height: 40px;
        }

        nav a {
          color: white;
          margin-left: 1.5rem;
          text-decoration: none;
          font-weight: 500;
        }

        .hero {
          min-height: 100vh;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          background: linear-gradient(to right, #003366, #4a90e2);
          color: white;
          text-align: center;
          padding: 2rem;
        }

        .hero img {
          width: 300px;
          height: 300px;
          margin-bottom: 2rem;
        }

        .hero h1 {
          font-size: 2rem;
          margin-bottom: 1rem;
        }

        .hero p {
          font-size: 1.1rem;
          margin-bottom: 2rem;
          max-width: 800px;
        }

        .btn {
          background: #ffcc00;
          color: #003366;
          padding: 0.7rem 1.5rem;
          text-decoration: none;
          border-radius: 4px;
          font-weight: bold;
        }

        @media (min-width: 768px) {
          .hero h1 {
            font-size: 2.5rem;
          }

          .hero p {
            font-size: 1.3rem;
          }
        }
      /* Button Styles */
.btnApply {
  background: #ffcc00;  /* Bright Yellow for high contrast against blue */
  color: #003366;  /* Dark blue text for clarity */
  padding: 1.2rem 3rem;  /* Increased padding for bigger button */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.5rem;  /* Bigger font size for more impact */
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  border: 2px solid #ffcc00;  /* Matching border */
}

/* Hover Effect */
.btn:hover {
  background: #e64a19;  /* Orange on Hover for contrast */
  color: #fff;  /* White text on hover */
  transform: scale(1.1);  /* Slightly enlarge on hover */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}



/* Keyframe for Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Keyframe for Bounce Effect */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
