:root {
  --primary-text-color: #0063b5;
  --secondary-text-color: #3c3c3c;
  --primary-white: #ffffff;
  --progress-bar-background: #e0f0ff;
  --question-background: #e1f7fd;
  --question-box-shadow: #a3e1f4;
  --submit-button-background: #064a95;
  --progress-fill-start: #04a4c8;
  --progress-fill-end: #74e3fc;
  --question-button-start: #00a5d4;
  --question-button-end: #50c6db;
  --message-text-color: #333;
  --strong-text-color: #000;
}

/* Head Section */
.headSection {
  text-align: center;
  margin-bottom: 56px;
}

.headContainer {
  margin-bottom: 24px;
  position: relative;
}

.headTitle {
  font-weight: 700;
  font-size: 54px;
  color: var(--primary-text-color);
  line-height: 150%;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.headSubtitle {
  font-size: 12px;
  color: var(--primary-text-color);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 10%;
}

.headProgress {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.progressComponent {
  width: 100%;
  padding: 20px;
}

.progressBarWrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.progressBar {
  flex-grow: 1;
  height: 18px;
  background-color: var(--progress-bar-background);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.progressBarFill {
  width: 10%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    var(--progress-fill-start) 0%,
    var(--progress-fill-end) 100%
  );
  transition: width 0.4s ease-in-out;
}

.progressPercentage {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-text-color);
  flex-shrink: 0;
  line-height: 100%;
}

.progressLabel {
  font-size: 12px;
  color: var(--secondary-text-color);
  display: flex;
  font-weight: 700;
}

.headSection2 {
  margin-bottom: 40px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.subTitle {
  padding: 8px;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
}

.title {
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
}

@media (max-width: 767.8px) {
  .headSection {
    margin-top: 6px;
    margin-bottom: 32px;
  }

  .headSubscriptions {
    flex-direction: column;
  }

  .headTitle {
    font-size: 38px;
    line-height: 125%;
    letter-spacing: 0.1em;
    margin-top: 22px;
  }

  .headContainer {
    margin-bottom: 16px;
  }

  .headProgress {
    gap: 8px;
  }

  .headSection2 {
    gap: 16px;
  }

  .subTitle {
    font-size: 16px;
  }

  .title {
    font-size: 20px;
    font-weight: 700;
  }
}
