.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.title {
  font-size: 42px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.events-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.events-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.events-more {
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  background-color: rgb(73, 152, 190);
  transition: background-color 0.15s;
  cursor: pointer;
}

.events-more:hover {
  background-color: rgb(44, 113, 145);
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

/* Event Card */
.event-card {
  background: white;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border-radius: 6px;
  border-bottom: 8px solid rgb(73, 152, 190);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Event Image */
.event-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-card:hover .event-img img {
  transform: scale(1.05);
}

/* Event Content */
.event-content {
  padding: 40px;
}

.event-date {
  color: rgb(73, 152, 190);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.event-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.3;
}

.event-description {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .title {
      font-size: 32px;
  }

  .events-grid {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
  }

  .events-section {
      padding: 40px 15px;
  }

  .event-content {
      padding: 15px;
  }

  .event-title {
      font-size: 18px;
  }
}

@media (max-width: 480px) {
  .events-title {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
  }

  .title {
      font-size: 28px;
  }

  .events-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .events-section {
      padding: 40px 15px;
  }
}

.gallery-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.title {
  font-size: 42px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.gallery-more {
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  background-color: rgb(117, 92, 173);
  transition: background-color 0.15s;
}

.gallery-more:hover {
  background-color: rgb(95, 73, 143);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

/* Gallery Items */
.gallery-item {
  aspect-ratio: 4 / 3; /* 4:3 ratio */
  overflow: hidden;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .gallery-section {
    padding: 40px 15px;
}
}

@media (max-width: 480px) {
  .gallery-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-section {
    padding: 40px 15px;
  }
}

