 .calendar-container {
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.calendar-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease forwards;
}

.calendar-side-img
 {
  flex: 1 1 38%;
}

.calendar-page-img {
  flex: 1 1 48%;
}
.calendar-side-img img
{
  width: 60%;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

.calendar-page-img img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}


.calendar-side-img img:hover,
.calendar-page-img img:hover {
  transform: scale(1.03);
}

@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .calendar-row {
    flex-direction: column;
  }
}