.elementor-762 .elementor-element.elementor-element-a9eb230{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-26441ad */.course-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  background: #f8f9fa;
}

.course-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  width: 300px;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.course-card:hover {
  transform: translateY(-8px);
}

.course-header {
  background: #1e40af;
  color: white;
  padding: 16px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.course-body {
  padding: 16px;
}

.course-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: #333;
}

.course-footer {
  text-align: center;
  padding: 16px;
  background: #f1f5f9;
}

.course-footer a {
  text-decoration: none;
  color: white;
  background: #2563eb;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.3s ease;
  display: inline-block;
}

.course-footer a:hover {
  background: #1d4ed8;
}/* End custom CSS */