.course-callout {
  background-color: #fdfdfd;
}

.course-callout h2 {
  color: #000034;
  font-size: 1.8rem;
  line-height: 1.4;
}

.course-callout {
  color: #000034;
  font-weight: 600;
}

.course-callout p {
  font-size: 1.1rem;
  color: #333;
}

button.explore-btn {
  background: linear-gradient(135deg, #002f5f, #004080) !important;
  color: #fff !important;
  padding: 12px 28px !important;
  font-size: 1rem !important;
  border-radius: 8px !important;
  border: none !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-block !important;
}

button.explore-btn:hover {
  background: linear-gradient(135deg, #004080, #0066cc) !important;
  box-shadow: 0 4px 15px rgba(0, 64, 128, 0.3);
  transform: translateY(-2px);
}

.animated-graphic {
  max-width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

body {
      font-family: Arial, sans-serif;
    }

    /* Overlay */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 999;
    }

    /* Modal */
    .modal1 {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0px 8px 20px rgba(0,0,0,0.3);
      z-index: 1000;
      width: 400px;
      max-width: 90%;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translate(-50%, -45%); }
      to { opacity: 1; transform: translate(-50%, -50%); }
    }

   