.cursos-section {
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9;
  color: #333;
}

.cursos-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.cursos-description {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}

.cursos-divider {
  border: none;
  border-top: 1px solid #000000;
  margin: 20px auto;
  width: 80%;
}

.cursos-image-container {
  margin: 20px 0;
}

.cursos-image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cursos-section h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 20px 0;
}

.cursos-list {
  list-style-type: disc;
  margin: 10px auto;
  padding: 0;
  max-width: 600px;
  text-align: left;
}

.cursos-list li {
  font-size: 1rem;
  margin: 10px 0;
}

.cursos-button-container {
  margin: 20px 0;
}

.cursos-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f7941e;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.cursos-button:hover {
  background-color: #e68516;
}

.course-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 20px;
}

.course-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.course-list li {
  margin: 10px 0;
}

.course-list a {
  text-decoration: none;
  color: #007BFF;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.course-list a:hover {
  color: #0056b3;
  text-decoration: underline;
}