.patron-section {
  background: -webkit-gradient(linear, left top, right bottom, from(#f7fbfc), to(#e3f2f1));
  background: linear-gradient(to bottom right, #f7fbfc, #e3f2f1);
  padding: 40px 20px;
  border-radius: 10px;
}

.patron-header {
  background-color: #122380;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 30px;
}

.patron-header p {
  color: #fff;
}

.patron-title {
  font-family: "Georgia", serif;
  font-weight: bold;
  color: #ffc107;
}

.patron-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.patron-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.patron-link {
  text-decoration: none;
  font-weight: 600;
  color: #007bff;
  font-size: 20px;
}

.patron-link:hover {
  color: #5c2a77;
  text-decoration: underline;
}