.course-countdown-section {
  margin-top: 100px;
  background-color: #020033;
  color: #ffffff;
  padding: 60px 20px;
}

.course-countdown-section .container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.course-countdown-section .course-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  min-width: 300px;
}

.course-countdown-section .course-icon {
  width: 110px;
  height: 110px;
  background: #ffffff;
  color: #ff7a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  border-radius: 50%;
  flex-shrink: 0;
}

.course-countdown-section .course-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.course-countdown-section .course-info .label {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.course-countdown-section .course-title {
  font-size: 26px;
  color: #ff7a1a;
  font-weight: 700;
  margin: 0;
}
.course-countdown-section .course-date-group {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.course-countdown-section .course-days,
.course-countdown-section .course-date {
  font-size: 16px;
  margin: 0;
  color: #ffffff;
  font-weight: 400;
}

.course-countdown-section .apply-btn {
  margin-top: 12px;
  background: #ff7a1a;
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-block;
}

.course-countdown-section .apply-btn:hover {
  background: #e56700;
}

.course-countdown-section .course-right {
  flex-shrink: 0;
  margin-top: 20px;
  min-width: 300px;
}

.course-countdown-section .countdown {
  display: flex;
  gap: 30px;
  font-size: 32px;
  text-align: center;
  font-weight: 600;
}

.course-countdown-section .countdown div {
  border-left: 1px solid #666666;
  padding: 0 10px;
}

.course-countdown-section .countdown div:first-child {
  border-left: none;
}

.course-countdown-section .countdown small {
  display: block;
  font-size: 14px;
  color: #cccccc;
  margin-top: 5px;
  font-weight: 400;
}

/* Mobile friendly layout */
@media (max-width: 768px) {
  .course-countdown-section .container {
    flex-direction: column;
    text-align: center;
  }

  .course-countdown-section .course-left {
    flex-direction: column;
    align-items: center;
  }

  .course-countdown-section .course-right {
    margin-top: 30px;
  }

  .course-countdown-section .countdown {
    justify-content: center;
  }
}
