.top {
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 2rem;
}

.line {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 2vw;
  width: 96%;
  border-top: 1px solid #333;
  opacity: 0.1;
}

.assessment {
  font-family: 'raleway', sans-serif;
  font-style: italic;
  font-size: 1rem;
  padding-top: 2rem;
  margin: 2rem 0;
}

.title-main {
  font-family: 'Montaser', sans-serif;
  font-weight: bold;
  font-size: 2rem;
  margin: 0;
}

.subtitle-main {
  font-family: 'Montaser', sans-serif;
  font-size: 1.5rem;
  margin: 0;
}


.button-more-info {
  font-family: 'inter', sans-serif;
  font-size: 1rem;
  background-color: #209084;
  padding: 1rem 5rem;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 40px;
  margin-top: 2rem;
  text-decoration: none;
  color: #fff;
}

.button-more-info:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.course-section {
  margin: 0 auto;
  padding: 0 2rem 0 2rem;
  font-family: 'inter', sans-serif;
  max-width: 1536px;
  font-size: 1.2rem;
}

.course-section h2 {
  font-size: 2rem;
  margin: 0;
  font-weight: bold;
  font-family: 'Montaser', sans-serif;
}

.course-section h3 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: lighter;
  color: #209084;
  font-family: 'raleway', sans-serif;
  font-style: italic;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.left-column {
  flex: 1;
  /* min-width: 280px;     ensures the column doesn’t get too narrow */
}

.left-column p {
  margin: 0;
  padding: 0;
}

/* Checklist styling */
.checklist {
  list-style: none;
  /* remove default bullet */
  margin: 2rem 0;
  padding: 0;
}

.checklist li {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 1rem;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  text-decoration: none;
  padding: 1rem 3rem;
  border-radius: 15px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
}

.btn:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Primary (green) button */
.btn-primary {
  background-color: #000;
  color: #fff;
}

/* Secondary (dark) button */
.btn-secondary {
  background-color: #209084;
  color: #fff;
}

/* --- Right Column --- */
.right-column {
  flex: 1;
  min-width: 280px;
  background-color: #f7f7f7;
  /* Light gray background */
  padding: 20px;
  border-radius: 4px;
}

.right-column ul {
  list-style: none;
  /* remove default bullets */
  margin: 0;
  padding: 0;
}

.right-column li {
  display: flex;
  align-items: center;
  position: relative;
}

.right-column-line {
  position: relative;
  margin: 0;
  width: 96%;
  border-top: 1px solid #333;
}

.checkmark-icon {
  width: 2rem;
  /* Adjust to your desired size */
  height: auto;
  margin-right: 2rem;
  /* Space between icon and text */
}

.two-column-ul {
  columns: 2;
  /* Standard property */
  -webkit-columns: 2;
  /* For Safari and older Chrome */
  -moz-columns: 2;
  /* For Firefox */
  list-style-type: disc;
  /* Ensures bullet points (default) */
  padding-left: 20px;
  /* Adds space for the bullets */
}

.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

th,
td {
  background-color: #f9f9f9;
  padding: 0 10px;
  text-align: center;
  vertical-align: top;
}

th {
  background-color: #f9f9f9;
  font-weight: bold;
}




.form-container {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding-top: 1%;
  font-family: 'inter', sans-serif;
  font-size: 1.2rem;
}

.form-container form {
  margin-left: 0;
  margin-right: 0;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-family: 'Montaser', sans-serif;
  margin-left: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: calc(100% - 10px);
  padding: 10px 0px 10px 0px;
  border: 1px solid #ccc;
  font-size: 20px;
  font-family: 'inter', sans-serif;
  outline: none;
  border-radius: 20px;
}

.option-language {
  margin-right: 85%;
}

.form-group input {
  border-radius: 50px;
}

.form-group select {
  padding-left: 1rem;
}

.form-group textarea {
  width: 100%;
  height: 100px;
  resize: none;
  border-radius: 15px;
  padding-left: 0.5rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  font-style: italic;
  color: #aaa;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="email"] {
  flex: 1;
  padding-left: 1rem;
}

.form-group input[type="date"] {
  padding-right: 1rem;
}

.form-group .half-width {
  width: calc(49% - 10px);
}

.three-items {
  display: flex;
  align-items: center;
  gap: 2%;
}

.three-items input {
  width: 73%;
  padding-left: 1rem;
}

.form-submit-button {
  font-family: 'inter', sans-serif;
  border-radius: 25px;
  color: #fff;
  z-index: 12;
  color: white;
  font-size: 25px;
  padding: 10px 30px 10px 30px;
  transition: transform 0.2s ease;
  width: fit-content;
  border: none;
  margin-top: 0.5%;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}

.form-submit-button:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.form-section {
  font-size: 1.3rem;
  font-family: 'Montaser', sans-serif;
  color: #209084;
  margin-bottom: 1%;
}


@media (max-width: 768px) {
  .assessment {
    padding-top: 0;
    margin: 1rem 0;
  }

  .course-section {
    padding: 0 15px 0 15px;
    font-size: 1rem;
  }

  .course-section h2 {
    font-size: 1.6rem;
  }

  .course-section h3 {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .two-column-ul {
    columns: 1;
  }

  .form-group {
    gap: 10px;
  }

  .form-group label {
    margin-left: 10px;
  }

  .form-group .half-width {
    width: calc(100% - 10px);
  }

  .top {
    padding: 10px;
  }

  .title-main {
    font-size: 1.8rem;
  }
}

@media (max-width: 500px) {
  .title-main {
    font-size: 1.5rem;
  }

  .subtitle-main {
    font-size: 1.2rem;
  }

  .form-section {
    font-size: 1rem;
  }

  .form-group label {
    font-size: 1rem;
  }

  .form-group select,
  .form-group input {
    font-size: 1rem;
  }
}