.calendar-section {
  margin: 30px 0;
  text-align: center;
}

.calendar-heading {
  color: var(--primary-purple);
  margin-bottom: 15px;
  font-size: 1.2em;
}

.calendar-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.calendar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 130px;
}

.calendar-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.calendar-button i {
  margin-right: 8px;
  font-size: 16px;
}

.calendar-button.apple {
  background: linear-gradient(135deg, #999, #333);
}

.calendar-button.google {
  background: linear-gradient(135deg, #4285F4, #0F9D58);
}

.calendar-button.outlook {
  background: linear-gradient(135deg, #0078D4, #106EBE);
}

.calendar-button.yahoo {
  background: linear-gradient(135deg, #720e9e, #400591);
}

/* Calendar icon styles */
.calendar-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .calendar-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .calendar-button {
    width: 80%;
    max-width: 200px;
  }
} 