.free-course-container {
  width: 1000px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

body {
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.content-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.info-container {
  flex: 1;
  margin-top: 18px;
}

.info-title {
  font-size: 24px;
  font-weight: bold;
  color: #2b3e51;
  margin: 0 0 20px 0;
	text-align: start;
}

.info-container p:last-of-type {
  margin-bottom: 10px;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px 0;
}

.icon-list-item {
  display: flex;
  align-items: center;
  margin: 0 0 15px 10px;
}

.icon-list-item .icon {
  font-size: 24px;
  color: #00A999;
  margin-right: 10px;
}

.content-wrapper > .form-container {
  flex: 1;
  width: auto;
  margin-top: 10px;
  margin-bottom: 30px;
  background-color: #FAFAFA;
  padding: 5px 20px 10px 20px;
  border-radius: 15px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.styled-button {
  transition: background-color 0.3s;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

.country {
  background-color: #ffffff !important;
}

.cd-form div.submit-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cd-form div.submit-container button.submit {
  float: none;
  padding: 12px !important;
  border-radius: 30px;
  font-size: 16px;
}

.form-sent {
  padding: 20px;
}

.back-link-container {
  margin-bottom: 20px;
}

.back-link {
  display: inline-block;
  color: #FF6B35;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s;
}

.back-link:hover {
  color: #E55A2B;
}

.success-message {
  font-size: 16px;
  color: #2b3e51;
  line-height: 1.5;
}

.footer-container.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

@media (max-width: 1000px) {
  .free-course-container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  body::before {
    background-position: center;
  }
  
  .content-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .info-title {
    margin-top: 10px;
  }

  .info-container {
    margin-top: 0;
  }

  .icon-list {
    margin-top: 5px;
  }

  .form-container {
    margin-top: 20px;
  }
}