@font-face {
  font-family: "PT Root UI";
  src: url("fonts/pt-root-ui_light.woff2") format("woff2"),
    url("fonts/pt-root-ui_light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PT Root UI";
  src: url("fonts/pt-root-ui_regular.woff2") format("woff2"),
    url("fonts/pt-root-ui_regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PT Root UI";
  src: url("fonts/pt-root-ui_medium.woff2") format("woff2"),
    url("fonts/pt-root-ui_medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PT Root UI";
  src: url("fonts/pt-root-ui_bold.woff2") format("woff2"),
    url("fonts/pt-root-ui_bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PT Root UI";
  src: url("fonts/pt-root-ui_bold.woff2") format("woff2"),
    url("fonts/pt-root-ui_bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  font-family: "PT Root UI", sans-serif;
  background: #1a1a1a;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  width: 100%;
  background: linear-gradient(
      135deg,
      rgba(26, 26, 26, 0) 0%,
      rgba(45, 45, 45, 0) 100%
    ),
    url("worker-bg.jpg") center right no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 100px;
}

.hero .container {
  height: 100%;
}

.container {
  width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
}

/* Header */
.header {
  margin-bottom: 80px;
}

.logo {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.logo-image {
  height: 60px;
  width: auto;
}

/* Main Content */
.main-content {
  display: block;
}

.content-left {
  max-width: 650px;
}

/* Title */
.title {
  font-size: 48px;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 40px;
  color: white;
}

.highlight {
  background: linear-gradient(45deg, #d9a560, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Price Block */
.price-block {
  margin-bottom: 50px;
}

.current-price {
  font-size: 36px;
  font-weight: bold;
  color: #d9a560;
  margin-bottom: 5px;
}

.old-price {
  font-size: 18px;
  color: #888;
  text-decoration: line-through;
}

/* Action Block */
.action-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.cta-button {
  background: linear-gradient(45deg, #cb944b, #d9a560);
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.arrow {
  font-size: 18px;
  font-weight: bold;
}

.payment-info {
  color: #cccccc;
  font-size: 18px;
  line-height: 1.4;
}

/* Advantages */
.advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 60px;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.checkmark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  flex-shrink: 0;
  margin-top: 5px;
}

.advantage-text {
  flex: 1;
}

.advantage-title {
  font-size: 18px;
  font-weight: bold;
  color: white;
  margin-bottom: 3px;
}

.advantage-subtitle {
  font-size: 18px;
  color: #cccccc;
  line-height: 1.3;
}

.advantage-subtitle strong {
  color: white;
  font-weight: bold;
}

/* Why Choose Section */
.why-choose {
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 50%,
      rgba(255, 255, 255, 0) 100%
    ),
    url("worker-main.jpg") center no-repeat;
  background-size: cover;
  padding: 80px 0;
  position: relative;
}

.why-choose-content {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.why-choose-right {
  max-width: 870px;
  padding-left: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 60px;
  margin-left: auto;
}

.why-choose-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 60px;
}

.benefits-grid {
  display: flex;
  gap: 60px;
}

.benefits-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.benefit-description {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.career-paths {
  margin-top: 15px;
}

.career-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 10px;
}

.career-list,
.employment-list {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.career-list li,
.employment-list li {
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  line-height: 1.4;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.career-list li::before,
.employment-list li::before {
  content: "•";
  color: #c49b61;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Target Audience Section */
.target-audience {
  background: linear-gradient(
      90deg,
      rgba(26, 26, 26, 0) 0%,
      rgba(26, 26, 26, 0) 100%
    ),
    url("target-audience-bg.jpg") center no-repeat;
  background-size: cover;
  padding: 120px 0;
  position: relative;
}

.target-audience-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(14, 13, 13, 1) 0%,
    rgba(14, 13, 13, 0) 100%
  );
  background-position: bottom;
  z-index: 3;
  height: 200px;
}

.target-audience-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: url("target-audience-workers.png") 85% bottom no-repeat;
  background-size: auto;
  pointer-events: none;
  z-index: 1;
}

.target-audience-wrapper {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 4;
}

.target-audience-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 5;
}

.target-audience-image {
  flex: 1;
  max-width: 600px;
  height: 500px;
}

.target-audience-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  margin-bottom: 60px;
}

.audience-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.audience-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.3s ease;
}

.audience-item:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.audience-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audience-text {
  flex: 1;
}

.audience-title {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
}

/* Course Program Section */
.course-program {
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.1) 100%
    ),
    url("target-audience-bg2.jpg") center no-repeat;
  background-size: cover;
  padding: 120px 0;
  position: relative;
}

.course-program-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 60px;
  text-align: center;
}

.program-table {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.table-header {
  display: grid;
  grid-template-columns: 80px 1fr 150px;
  background: rgba(248, 249, 250, 0.8);
  border-bottom: 2px solid #e9ecef;
}

.header-cell {
  padding: 20px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  border-right: 1px solid #e9ecef;
}

.header-cell:last-child {
  border-right: none;
}

.header-cell.module {
  text-align: left;
}

.table-body {
  background: rgba(255, 255, 255, 0.6);
}

.table-row {
  display: grid;
  grid-template-columns: 80px 1fr 150px;
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.2s ease;
}

.table-row:hover {
  background-color: rgba(248, 249, 250, 0.8);
}

.table-row:last-child {
  border-bottom: none;
}

.cell {
  padding: 20px 25px;
  font-size: 14px;
  color: #333333;
  border-right: 1px solid #e9ecef;
  display: flex;
  align-items: center;
}

.cell:last-child {
  border-right: none;
}

.cell.number {
  justify-content: center;
  font-weight: 600;
  color: #1a1a1a;
}

.cell.module {
  line-height: 1.4;
}

.cell.hours {
  justify-content: center;
  font-weight: 500;
  color: #666666;
}

/* Learning Outcomes Section */
.learning-outcomes {
  background: linear-gradient(
      90deg,
      rgba(26, 26, 26, 0) 0%,
      rgba(26, 26, 26, 0) 100%
    ),
    url("learning-bg.jpg") center no-repeat;
  background-size: cover;
  padding: 160px 0 120px 0;
  position: relative;
}

.learning-outcomes-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgb(14 13 13 / 0%) 0%, rgb(0 0 0) 100%);
  background-position: bottom;
  z-index: 3;
  height: 200px;
}

.documents-outcomes-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background-position: bottom;
  z-index: 3;
  height: 200px;
}

.learning-outcomes-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: url("learning-worker.png") 85% bottom no-repeat;
  background-size: 96%;
  pointer-events: none;
  z-index: 1;
}

.academy-audience-gradient-top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(
    180deg,
    rgb(255 255 255) 0%,
    rgb(255 255 255 / 0%) 100%
  );
  z-index: 3;
  height: 200px;
}

.academy-audience-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgb(255, 255, 255) 20%,
    rgba(255, 255, 255, 0) 100%
  );
  background-position: bottom;
  z-index: 3;
  height: 200px;
}

.why-us-gradient {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(180deg, rgb(0 0 0) 0%, rgb(0 0 0 / 0%) 100%);
  background-position: top;
  z-index: 3;
  height: 200px;
}
.why-us-gradient-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgb(0 0 0) 0%, rgb(0 0 0 / 0%) 100%);
  background-position: bottom;
  z-index: 3;
  height: 200px;
}

.contact-gradient {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(180deg, rgb(0 0 0) 0%, rgb(0 0 0 / 0%) 100%);
  background-position: top;
  z-index: 0;
  height: 200px;
}
.learning-outcomes-wrapper {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 4;
}

.learning-outcomes-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 5;
}

.learning-outcomes-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  margin-bottom: 60px;
}

.learning-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.learning-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.3s ease;
}

.learning-item:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.learning-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.learning-text {
  flex: 1;
}

.learning-title {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
}

/* Why Us Section */
.why-us {
  background: radial-gradient(
      circle at center,
      rgba(26, 26, 26, 0) 0%,
      rgba(45, 45, 45, 0) 100%
    ),
    url("why-us-bg.jpg") center no-repeat;
  background-size: cover;
  padding: 200px 0;
  position: relative;
}

.why-us-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  margin-bottom: 60px;
  text-align: left;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-us-item {
  background: transparent;
  border-radius: 20px;
  padding: 0;
  position: relative;
  transition: all 0.3s ease;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.why-us-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(217, 165, 96, 0.3);
}

.why-us-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #d9a560 0%, #735733 100%);
  border-radius: 20px;
  padding: 30px 25px;
}

.why-us-item-title {
  font-size: 18px;
  font-weight: 500;
  color: white;
  line-height: 1.3;
  margin-bottom: 20px;
  flex: 1;
}

.why-us-icon {
  align-self: flex-end;
  margin-top: auto;
  opacity: 0.9;
}

.why-us-icon svg {
  width: 100px;
  height: 100px;
}

/* Contact Form Section */
.contact-form {
  background: #1a1a1a;
  padding: 0 0 120px 0;
  position: relative;
}

.contact-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 80px;
  background: rgba(255, 255, 255, 1) url("contact-worker.png") left center
    no-repeat;
  background-size: auto 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  min-height: 350px;
  padding-right: 80px;
}

.contact-form-content {
  flex: 1;
  max-width: 400px;
}

.contact-form-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.contact-form-subtitle {
  font-size: 18px;
  color: #666666;
  margin-bottom: 40px;
  font-weight: 400;
}

.contact-form-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
      max-width: 340px;
    padding: 20px 0;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 18px 25px;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  font-size: 16px;
  font-family: "PT Root UI", sans-serif;
  background: #efefef;
  color: #333333;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #d9a560;
  background: white;
  box-shadow: 0 0 0 3px rgba(217, 165, 96, 0.1);
}

.form-input::placeholder {
  color: #999999;
  font-weight: 400;
}

.form-submit-btn {
  background: linear-gradient(45deg, #d9a560, #c49b61);
  border: none;
  padding: 20px 40px;
  border-radius: 15px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  font-family: "PT Root UI", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 165, 96, 0.4);
}

/* Documents Section */
.documents {
  background: #f8f9fa url("documents-bg.jpg") center no-repeat;
  background-size: cover;
  padding: 120px 0;
  position: relative;
}

.documents-wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
}

.documents-content {
  flex: 1;
  max-width: 600px;
}

.documents-title {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 60px;
}

.documents-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.document-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.document-text {
  font-size: 20px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.4;
}

.documents-image {
  flex: 1;
  max-width: 600px;
}

.documents-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Learning Process Section */
.learning-process {
  background: #ffffff;
  padding: 120px 0;
  position: relative;
}

.learning-process-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 80px;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-item {
  background: linear-gradient(135deg, #d9a560 0%, #735733 100%);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s ease;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.process-item:nth-child(5) {
  grid-column: span 2;
  flex-direction: column;
  min-height: 250px;
  overflow: visible;
}

.process-item:nth-child(5) .process-image {
  position: absolute;
  right: 20%;
  bottom: -4px;
  z-index: 10;
}

.process-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.process-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(217, 165, 96, 0.3);
}

.process-number {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: black;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.process-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
  margin-bottom: 20px;
}

.process-description {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  flex: 1;
  max-width: 370px;
}

.process-image {
  margin-top: 20px;
  text-align: center;
}

.delivery-image {
  width: 135%;
  height: auto;
}

/* About Academy Section */
.about-academy {
  background: url("about-academy-bg.jpg") center no-repeat;
  background-size: cover;
  padding: 120px 0 0 0;
  position: relative;
  min-height: 650px;
}

.about-academy-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.about-academy-content {
  flex: 1;
  max-width: 500px;
}

.about-academy-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.about-academy-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 30px;
}

.about-academy-text {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
}

.about-academy-image {
  flex: 1;
  position: relative;
  z-index: 2;
}

.academy-person-img {
  width: 100%;
  height: auto;
}

/* Testimonials Section */
.testimonials {
  background: #131313;
  padding: 120px 0;
  position: relative;
}

.testimonials .container {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #333333 100%);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  margin-bottom: 80px;
  text-align: left;
}

.testimonials-slider {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.slider-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.testimonials-container {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(50% - 15px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.testimonial-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-rating {
  margin-bottom: 20px;
}

.star {
  color: #ffd700;
  font-size: 18px;
  margin-right: 2px;
}

.testimonial-text {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* Consultation Section */
.consultation {
  background: #131313;
  padding: 120px 0;
  position: relative;
}

.consultation-card {
  background: white;
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.consultation-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.consultation-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.consultation-form-row {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 10px;
}

.consultation-input {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  padding: 18px 25px;
  border: none;
  border-radius: 15px;
  font-size: 16px;
  font-family: "PT Root UI", sans-serif;
  background: #f5f5f5;
  color: #333333;
  transition: all 0.3s ease;
}

.consultation-input:focus {
  outline: none;
  background: #eeeeee;
  box-shadow: 0 0 0 3px rgba(217, 165, 96, 0.2);
}

.consultation-input::placeholder {
  color: #999999;
  font-weight: 400;
}

.consultation-btn {
  background: linear-gradient(45deg, #d9a560, #c49b61);
  border: none;
  padding: 20px 40px;
  border-radius: 15px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  font-family: "PT Root UI", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.consultation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 165, 96, 0.4);
}

/* Responsive */
@media (max-width: 1440px) {
  .container {
    width: 100%;
    max-width: 1440px;
    padding: 0 40px;
  }

  .testimonials .container {
    padding: 40px;
  }
}

@media (max-width: 1024px) {
  .why-choose-content {
    justify-content: center;
  }

  .why-choose-right {
    padding: 40px;
    margin-left: 0;
  }

  .why-choose-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .hero {
    background-position: top;
  }

  .benefits-grid {
    gap: 40px;
  }

  .benefits-column {
    gap: 30px;
  }

  .target-audience {
    padding-bottom: 500px;
  }

  .target-audience-overlay {
    width: 100%;
    height: 100%;
    bottom: 0;
    top: auto;
    background-position: center bottom;
  }

  .target-audience-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .target-audience-content {
    max-width: none;
  }

  .target-audience-image {
    max-width: none;
    height: 400px;
  }

  .target-audience-title {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
  }

  .course-program {
    padding: 60px 0;
  }

  .course-program-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .table-header,
  .table-row {
    grid-template-columns: 60px 1fr 120px;
  }

  .header-cell,
  .cell {
    padding: 15px 20px;
  }

  .header-cell {
    font-size: 14px;
  }

  .cell {
    font-size: 13px;
  }

  .audience-items {
    gap: 20px;
  }

  .audience-item {
    padding: 25px 30px;
  }

  .learning-outcomes {
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(26, 26, 26, 0.6) 100%
      ),
      url("learning-bg.jpg") center no-repeat;
    background-size: cover;
  }

  .learning-outcomes-overlay {
    display: none;
  }

  .why-us-gradient,
  .why-us-gradient-bottom,
  .documents-outcomes-gradient,
  .academy-audience-gradient-top,
  .academy-audience-gradient {
    height: 50px;
  }

  .learning-outcomes-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .learning-outcomes-content {
    max-width: none;
  }

  .learning-outcomes-title {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
  }

  .learning-items {
    gap: 20px;
  }

  .learning-item {
    padding: 25px 30px;
  }

  .why-us {
    padding: 60px 0;
  }

  .why-us-title {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .why-us-item {
    min-height: 250px;
    padding: 0;
  }

  .why-us-content {
    padding: 30px 25px;
  }

  .why-us-item-title {
    font-size: 16px;
  }

  .why-us-icon svg {
    width: 60px;
    height: 60px;
  }

  .contact-form {
    padding: 60px 0;
  }

  .contact-form-wrapper {
    gap: 0;
    flex-direction: column;
    padding: 30px 30px 30px 0;
    align-items: flex-end;
  }
  .delivery-image {
    width: auto;
  }
  .process-item:nth-child(5) .process-image {
    right: 0;
  }
  .contact-form-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .contact-form-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .form-input {
    padding: 16px 20px;
    font-size: 15px;
  }

  .form-submit-btn {
    padding: 18px 35px;
    font-size: 15px;
  }

  .testimonials .container {
    padding: 30px;
  }

  .documents {
    padding: 80px 0;
  }

  .documents-wrapper {
    gap: 60px;
  }

  .documents-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .documents-list {
    gap: 25px;
  }

  .document-text {
    font-size: 18px;
  }

  .learning-process {
    padding: 80px 0;
  }

  .learning-process-title {
    font-size: 32px;
    margin-bottom: 60px;
  }

  .process-grid {
    gap: 30px;
  }

  .process-item {
    padding: 30px 25px;
    min-height: 250px;
  }

  .process-item:nth-child(5) {
    min-height: 200px;
  }

  .process-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .process-description {
    font-size: 15px;
    max-width: 200px;
  }

  .about-academy {
    padding: 80px 0 0 0;
    min-height: 550px;
  }

  .about-academy-wrapper {
    gap: 60px;
  }

  .about-academy-title {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .about-academy-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .about-academy-text {
    font-size: 15px;
  }

  .testimonials {
    padding: 80px 0;
  }

  .testimonials-title {
    font-size: 32px;
    margin-bottom: 60px;
  }

  .consultation {
    padding: 80px 0;
  }

  .consultation-card {
    padding: 40px;
  }

  .consultation-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .consultation-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    height: auto;
    min-height: 600px;
    background-position: center;
  }

  .why-choose {
    padding: 60px 0;
  }

  .why-choose-right {
    padding: 30px;
  }

  .benefits-grid {
    flex-direction: column;
    gap: 25px;
  }

  .benefits-column {
    gap: 25px;
  }

  .why-choose-title {
    font-size: 28px;
  }

  .title {
    font-size: 32px;
  }

  .action-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .advantages {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .target-audience {
    padding-bottom: 250px;
  }
  .target-audience-overlay {
    background-size: 90%;
  }
  .cta-button {
    font-size: 14px;
  }
  .target-audience-wrapper {
    gap: 30px;
  }

  .target-audience-image {
    height: 300px;
    display: none;
  }

  .target-audience-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .audience-items {
    gap: 20px;
  }

  .audience-item {
    padding: 20px 25px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .audience-title {
    font-size: 18px;
  }

  .course-program {
    padding: 60px 0;
  }

  .course-program-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .table-header,
  .table-row {
    grid-template-columns: 50px 1fr 100px;
  }

  .header-cell,
  .cell {
    padding: 12px 15px;
  }

  .header-cell {
    font-size: 13px;
  }

  .cell {
    font-size: 12px;
  }

  .cell.module {
    line-height: 1.3;
  }

  .learning-outcomes {
    padding: 60px 0;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(26, 26, 26, 0.6) 100%
      ),
      url("learning-bg.jpg") center no-repeat;
    background-size: cover;
  }

  .learning-outcomes-overlay {
    display: none;
  }

  .learning-outcomes-wrapper {
    gap: 30px;
  }

  .learning-outcomes-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .learning-items {
    gap: 20px;
  }

  .learning-item {
    padding: 20px 25px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .learning-title {
    font-size: 18px;
  }

  .why-us {
    padding: 60px 0;
  }

  .why-us-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-us-item {
    min-height: 200px;
    padding: 0;
    text-align: center;
  }

  .why-us-content {
    padding: 25px 20px;
    text-align: center;
  }

  .why-us-item-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .why-us-icon {
    align-self: center;
  }

  .why-us-icon svg {
    width: 50px;
    height: 50px;
  }

  .contact-form {
    padding: 40px 0;
  }

  .contact-form-wrapper {
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 1);
    background-image: none;
    padding: 20px;
    text-align: center;
    min-height: auto;
    align-items: center;
  }

  .contact-form-content {
    max-width: none;
  }

  .contact-form-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .contact-form-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .form-input {
    padding: 14px 18px;
    font-size: 14px;
  }

  .form-submit-btn {
    padding: 16px 30px;
    font-size: 14px;
  }

  .documents {
    padding: 60px 0;
  }

  .documents-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .documents-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
  }

  .documents-list {
    gap: 20px;
  }

  .document-item {
    flex-direction: row;
    text-align: left;
    gap: 15px;
  }

  .document-text {
    font-size: 16px;
  }

  .learning-process {
    padding: 60px 0;
  }

  .learning-process-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .process-item {
    padding: 25px 20px;
    min-height: 200px;
  }

  .process-item:nth-child(5) {
    grid-column: span 1;
    min-height: 200px;
  }

  .process-item:nth-child(5) .process-image {
    position: static;
    margin-bottom: -30px;
  }

  .process-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .process-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .process-description {
    font-size: 14px;
    max-width: none;
  }

  .delivery-image {
    width: 100%;
  }

  .about-academy {
    padding: 60px 0 0 0;
    min-height: auto;
  }

  .about-academy-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .about-academy-content {
    max-width: none;
    text-align: center;
  }

  .about-academy-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .about-academy-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .about-academy-text {
    font-size: 14px;
  }

  .testimonials {
    padding: 60px 0;
  }

  .testimonials .container {
    padding: 25px 15px;
  }

  .testimonials-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .testimonials-slider {
    flex-direction: row;
    gap: 15px;
    align-items: stretch;
  }

  .slider-arrow {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
  }

  .testimonials-container {
    flex: 1;
    width: calc(100% - 105px);
    overflow: hidden;
  }

  .testimonials-track {
    flex-direction: row;
    gap: 0;
    width: 100%;
  }

  .testimonial-card {
    min-width: 100%;
    width: 100%;
    padding: 20px;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .testimonial-name {
    font-size: 18px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .consultation {
    padding: 60px 0;
  }

  .consultation-card {
    padding: 30px 20px;
  }

  .consultation-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .consultation-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .consultation-form-row {
    flex-direction: column;
    gap: 15px;
  }

  .consultation-input {
    min-width: auto;
    max-width: none;
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
  }

  .consultation-btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .testimonials-slider {
    gap: 10px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .testimonials-container {
    width: calc(100% - 90px);
  }

  .testimonial-card {
    padding: 15px;
    font-size: 14px;
  }

  .testimonial-name {
    font-size: 16px;
  }

  .testimonial-text {
    font-size: 14px;
  }
}
