/* jumbotron.css */

.jumbotron {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  padding: 80px 30px;
  text-align: center;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.jumbotron h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.jumbotron p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.jumbotron .btn {
  display: inline-block;
  background-color: white;
  color: #4f46e5;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.jumbotron .btn:hover {
  background-color: #e0e7ff;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .jumbotron {
    padding: 60px 20px;
  }

  .jumbotron h1 {
    font-size: 2.2rem;
  }

  .jumbotron p {
    font-size: 1rem;
  }
}