/* Events Section */
.events-section {
  padding: 50px 0;
}

.events-title {
  font-size: 2.5rem;
  color: #125a42;
  font-weight: bold;

  margin-bottom: 50px;
}

/* Event Card */
.event-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.event-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.event-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.event-details {
  padding: 20px;
  text-align: center;
}

.event-title {
  font-size: 1.5rem;
  color: #125a42;
  font-weight: bold;
}

.event-date,
.event-location {
  font-size: 1rem;
  color: #777;
  margin: 10px 0;
}

.btn-primary {
  background-color: #125a42;
  border: none;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0f4836;
}
.event-container h3 {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .event-container h2 {
    font-size: 18px;
  }
}
