.course-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px;
  
}

.course-card {
  width: 626px;
  display: flex;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-color: #0b0b0b !important;
}

.course-img {
  width: 200px;
  height: 150px;
  object-fit: cover;
}

.course-info {
  flex: 1;
  padding: 20px;
}

.course-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.location {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.location-icon {
  margin-right: 5px;
}

.description {
  font-size: 16px;
  margin-bottom: 10px;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #27ae60;
  margin-bottom: 10px;
}

.inquiry-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: #3498db;
  color: #ffffff;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.inquiry-btn:hover {
  background-color: #2980b9;
}

@media screen and (max-width: 768px) {
  .course-card {
      flex-direction: column;
      align-items: center;
  }

  .course-img {
      width: 100%;
      /* Make the image full width on smaller screens */
      height: auto;
  }
}
.courses-heading
{
  margin-top: 100px;
  margin-bottom:50px;
  text-align: center;
}