.course-description section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 2rem;
    gap: 2rem;
    border-radius: 5px;
}

.course-description section:nth-child(odd) {
    background-color: #fff7f0;
    /* кремовый */
}

.course-description section:nth-child(even) {
    background-color: #fdeee7;
    /* нежно-розовый */
}

.course-description img {
    max-width: 100%;
    max-height: 700px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 0;
}

.course-description .problems-text,
.course-description .author-text,
.course-description .cta-text {
    width: 100%;
}

.problems-image,
.author-image,
.cta-image {
    max-width: 45%;
}

.course-description h2,
.course-description h3 {
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.course-description p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.author-text ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
    list-style-type: none;
}

.author-text ul li {
    margin-bottom: 0.6rem;
    position: relative;
}

.author-text ul li::before {
    content: "✔";
    color: #ff7043;
    margin-right: 0.5rem;
}

.cta-button,
.buy-button {
    background: #ff7043;
    color: #fff;
    border: none;
    padding: 0.9rem 1.7rem;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover,
.buy-button:hover {
    background: #e64a19;
}

.program h3,
.questions h3 {
    width: 30%;
}

.program p,
.questions p {
    width: 70%;
}





/* Стили для таблицы программы видео-встреч */
.program table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #333;
  margin-top: 20px;
}

.program th,
.program td {
  border: 2px solid #ccc;
  padding: 12px 16px;
  vertical-align: top;
}

.program th {
  font-weight: bold;
  text-align: left;
  /* Фон не меняется — остаётся прозрачным / как у родителя */
}

.program ul {
  margin: 8px 0 0 0;
  padding-left: 0;
  list-style: none;
}

.program ul li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
}

.program ul li:before {
  content: "–";
  position: absolute;
  left: 0;
  color: #555;
}