/* Google Calendar Iframe */
iframe {
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  width: 800px;
  height: 600px;
}
/* Events Section */
#events-list {
  max-width: 900px;
  margin: 40px auto;
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#events-list h2 {
  color: #d63384;
  font-size: 2em;
  margin-bottom: 20px;
}

#events {
  margin-bottom: 30px;
}
/* Responsive Design */
@media (max-width: 850px) {
  #events-list {
    margin: 20px;
    padding: 20px;
  }

  iframe {
    width: 100%;
    height: 500px;
  }
}