.events-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: sans-serif;
}

.section-title {
  text-align: center;
  color: #3C0145;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.event-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card.reverse {
  flex-direction: row-reverse;
}

.event-image {
  flex: 1;
  height: 350px;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-content {
  flex: 1;
  padding: 20px;
}

.event-date {
  color: #3C0145;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.event-content h3 {
  font-size: 1.8rem;
  margin: 10px 0;
  color: #3C0145;
}

.event-content p {
  color:#3C0145;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  padding: 10px 25px;
  background-color: #3C0145;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: opacity 0.3s;
}

.read-more:hover {
  opacity: 0.9;
}

/* Responsive Mobile View */
@media (max-width: 768px) {
  .event-card, .event-card.reverse {
    flex-direction: column;
    gap: 20px;
  }
  
  .event-image {
    height: 250px;
    width: 100%;
  }
}