.elementor-13 .elementor-element.elementor-element-61d21d5{--display:flex;}/* Start custom CSS for wp-widget-custom_html, class: .elementor-element-26f251c */body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #f8f9fa, #fff);
  color: #333;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

h1 {
  text-align: center;
  color: #e2851a;
  margin-bottom: 50px;
  font-size: 2.5em;
  animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.month {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.month:hover {
  transform: translateY(-5px);
}

.month h2 {
  color: #e2851a;
  border-left: 5px solid #e2851a;
  padding-left: 15px;
  margin-bottom: 20px;
  font-size: 1.8em;
}

.month ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.month li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.1em;
}

.month li:last-child {
  border-bottom: none;
}

.btn {
  display: inline-block;
  background-color: #e2851a;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #c46d14;
  transform: scale(1.05);
}

.badge {
  background-color: #e2851a;
  color: white;
  font-size: 0.75em;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 10px;
  font-weight: 600;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2em;
  }

  .month h2 {
    font-size: 1.5em;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 0;
  }
}/* End custom CSS */