/* .container-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
} */

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 4px solid #1fc602;
}

h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.solution{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

.solution--info {
  max-width: 600px;
  margin: 0 auto;
}
.solution--info img{
  width: 100%;
  height: auto;
  border-radius: 30px;
}


.highlight {
  color: #1fc602;
  font-weight: 600;
  font-size: 2rem;
  border-bottom: 2px solid #1fc602;
}
.highlight-small{
   color: #1fc602;
  font-weight: 600;
  font-size: 1.4rem;
  border-bottom: 2px solid #1fc602;
}
.cta-button {
  display: inline-block;
  background-color: #1fc602;
  color: white;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(31, 198, 2, 0.3);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #1aa802;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 198, 2, 0.4);
}

/* Section Styles */
section {
  padding: 60px 0;
}

h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #1fc602;
  border-radius: 2px;
}

/* Block 1 - Solution */
.solution-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.solution-list li {
  padding: 15px 0;
  padding-left: 40px;
  position: relative;
  font-size: 1.1rem;
  border-bottom: 1px solid #e0e0e0;
}

.solution-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1fc602;
  font-weight: bold;
  font-size: 1.3rem;
}

.solution-conclusion {
  text-align: center;
  margin-top: 30px;
  font-size: 1.2rem;
  color: #1fc602;
  font-weight: 600;
}

/* Block 2 - Method */
.method-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.method-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}

.method-accent {
  background-color: #f0f9f0;
  border-left: 4px solid #1fc602;
  padding: 20px;
  margin-top: 30px;
  text-align: left;
  border-radius: 0 8px 8px 0;
  font-size: 1.1rem;
}

.course {
  margin: 50px 0;
}
.course h2 {
  margin-bottom: 70px;
}

.course--wrapper{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
  margin-bottom: 100px;
}
/* Block 3 - Two Columns */
.two-columns {
  /* max-width: 800px; */
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  /* margin-top: 40px; */
}

.column {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.column h3 {
  color: #1fc602;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.column ul {
  list-style: none;
  padding: 0;
}

.column li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.column li::before {
  content: '•';
  color: #1fc602;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.program-info {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background-color: #1fc602;
  color: white;
  border-radius: 8px;
}

.program-info p {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* Specialists Block */
.specialists {
  margin-top: 40px;
  text-align: center;
}

.specialists-placeholder {
  /* background-color: #d1d1d1; */
  /* height: 300px; */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  color: #666;
  font-size: 1.1rem;
  margin-top: 20px;
}

.specialists-placeholder img{
  max-width: 600px;
  height: auto;
  border-radius: 8px;
}

/* Block 4 - Approach */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.approach-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-5px);
}

.approach-icon {
  width: 60px;
  height: 60px;
  background-color: #1fc602;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.approach-item h3 {
  color: #1fc602;
  margin-bottom: 10px;
}

/* Block 5 - Steps */
.steps {
  counter-reset: step;
  max-width: 800px;
  margin: 10px auto 0;
}

.step {
  display: flex;
  margin-bottom: 10px;
  background: white;
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 80px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #1fc602;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step h3 {
  color: #1fc602;
  margin-bottom: 10px;
}

/* Block 6 - Results */
/* .results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
} */

/* .result-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
} */

/* .result-placeholder {
  background-color: #d1d1d1;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1rem;
}
.result-placeholder--img{
  width: auto;
  height: 100%;
} */

/* .result-content {
  padding: 20px;
}

.result-content h3 {
  color: #1fc602;
  margin-bottom: 10px;
}

.video-placeholder {
  background-color: #d1d1d1;
  height: 300px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  margin-top: 20px;
} */

.results-grid {
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.result-content {
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: fit-content;
  position: sticky;
  top: 20px;
}

.result-content h3 {
  color: #1fc602;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.result-content p {
  color: #555;
  line-height: 1.6;
  font-size: 1.05rem;
}

.result-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.result-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 20px;
  background-color: #f8f9fa;
}

.result-placeholder--img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.result-placeholder--img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.treat--wrapper{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 70px;
  margin-top: 50px
}
.cta--wrapper{
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
/* Адаптивность для планшетов */
@media (max-width: 1024px) {
  .solution {
    flex-direction: column;
    gap: 30px;
  }
  
  .solution--info {
    max-width: 100%;
    width: 100%;
  }
  
  .course--wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .treat--wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .result-content {
    position: static;
  }
  
  .result-placeholder {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px;
  }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 50px 20px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .two-columns,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .step {
    padding-left: 70px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .solution-list {
    max-width: 100%;
  }

  .specialists-placeholder {
    flex-direction: column;
    gap: 20px;
  }

  .specialists-placeholder img {
    max-width: 100%;
  }

  .course--wrapper {
    margin-bottom: 50px;
  }

  .course h2 {
    margin-bottom: 40px;
  }

  .result-placeholder {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .result-content h3 {
    font-size: 1.3rem;
  }

  .cta-button {
    padding: 15px 25px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  section {
    padding: 40px 0;
  }

  .method-accent {
    padding: 15px;
    font-size: 1rem;
  }

  .program-info p {
    font-size: 1rem;
  }

  .approach-item {
    padding: 20px;
  }

  .approach-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .step {
    padding-left: 70px;
  }

  .step::before {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    left: 15px;
  }

  .highlight {
    font-size: 1.6rem;
  }

  .highlight-small {
    font-size: 1.2rem;
  }

  .solution-conclusion {
    font-size: 1.1rem;
  }

  .solution-list li {
    padding-left: 30px;
    font-size: 1rem;
  }

  .column {
    padding: 20px;
  }

  .column h3 {
    font-size: 1.2rem;
  }

  .column li {
    padding-left: 25px;
    font-size: 0.95rem;
  }

  .result-content {
    padding: 15px;
  }

  .result-content h3 {
    font-size: 1.2rem;
  }

  .result-content p {
    font-size: 0.95rem;
  }

  .result-placeholder--img {
    border-radius: 6px;
  }
}

/* Адаптивность для маленьких мобильных */
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .hero {
    padding: 40px 15px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin: 0 auto 20px;
  }

  section {
    padding: 30px 0;
  }

  .solution-list li {
    padding: 12px 0;
    font-size: 0.95rem;
  }

  .solution-list li::before {
    font-size: 1.1rem;
  }

  .solution-conclusion {
    font-size: 1rem;
  }

  .method-content p {
    font-size: 1rem;
  }

  .method-accent {
    padding: 12px;
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 12px 20px;
    font-size: 0.95rem;
    max-width: 100%;
  }

  .course h2 {
    margin-bottom: 30px;
  }

  .course {
    margin: 30px 0;
  }

  .column {
    padding: 15px;
  }

  .column h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .column li {
    padding: 8px 0;
    font-size: 0.9rem;
    padding-left: 20px;
  }

  .program-info p {
    font-size: 0.95rem;
  }

  .program-info {
    padding: 15px;
  }

  .approach-item {
    padding: 15px;
  }

  .approach-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .approach-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .step {
    padding: 10px 10px 10px 70px;
    font-size: 0.95rem;
  }

  .step h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }

  .step::before {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    font-weight: bold;
  }

  .highlight {
    font-size: 1.4rem;
  }

  .highlight-small {
    font-size: 1.1rem;
  }

  .result-placeholder {
    gap: 10px;
    padding: 10px;
  }

  .result-content h3 {
    font-size: 1.1rem;
  }

  .result-content p {
    font-size: 0.9rem;
  }

  .result-content {
    padding: 12px;
  }

  .result-placeholder--img {
    border-radius: 4px;
  }

  .approach-grid {
    gap: 20px;
  }

  .result-item {
    margin-top: 20px;
  }

  .treat--wrapper {
    margin-top: 30px;
  }

  .course--wrapper {
    gap: 20px;
  }

  .solution {
    gap: 20px;
  }

  .solution--info img {
    border-radius: 20px;
  }

  .specialists-placeholder {
    gap: 15px;
  }

  .cta-section {
    padding: 40px 20px;
  }

  .cta-section h2 {
    font-size: 1.3rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}

/* Адаптивность для самых маленьких экранов */
@media (max-width: 360px) {
  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .hero {
    padding: 30px 10px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  section {
    padding: 25px 0;
  }

  .solution-list li {
    font-size: 0.9rem;
    padding: 10px 0;
  }

  .solution-conclusion {
    font-size: 0.95rem;
  }

  .method-content p {
    font-size: 0.95rem;
  }

  .method-accent {
    padding: 10px;
    font-size: 0.9rem;
  }

  .column h3 {
    font-size: 1rem;
  }

  .column li {
    font-size: 0.85rem;
  }

  .program-info p {
    font-size: 0.9rem;
  }

  .approach-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .approach-item h3 {
    font-size: 1rem;
  }

  .step {
    padding: 8px 8px 8px 65px;
    font-size: 0.9rem;
  }

  .step h3 {
    font-size: 1rem;
  }

  .step::before {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .highlight {
    font-size: 1.2rem;
  }

  .highlight-small {
    font-size: 1rem;
  }

  .result-content h3 {
    font-size: 1rem;
  }

  .result-content p {
    font-size: 0.85rem;
  }

  .result-placeholder {
    gap: 8px;
    padding: 8px;
  }

  .cta-section {
    padding: 30px 15px;
  }

  .cta-section h2 {
    font-size: 1.2rem;
  }

  .cta-section p {
    font-size: 0.9rem;
  }

  .cta-section .cta-button {
    margin-top: 15px;
  }

  .course h2 {
    font-size: 1.2rem;
  }

  .approach-grid {
    gap: 15px;
  }

  .approach-item {
    padding: 12px;
  }

  .result-item {
    margin-top: 15px;
  }

  .treat--wrapper {
    margin-top: 20px;
  }

  .course--wrapper {
    gap: 15px;
  }

  .solution {
    gap: 15px;
  }

  .solution--info img {
    border-radius: 15px;
  }

  .specialists-placeholder {
    gap: 10px;
  }

  .specialists-placeholder img {
    border-radius: 6px;
  }

  .course {
    margin: 25px 0;
  }

  .result-placeholder--img {
    border-radius: 3px;
  }

  .result-content {
    padding: 10px;
  }

  .result-content h3 {
    margin-bottom: 10px;
  }

  .result-content p {
    line-height: 1.5;
  }

  .program-info {
    margin-top: 30px;
  }

  .program-info p {
    margin: 8px 0;
  }

  .solution-list {
    margin: 0 auto 20px;
  }

  .solution-conclusion {
    margin-top: 20px;
  }

  .method-content {
    margin-bottom: 20px;
  }

  .approach-item p {
    font-size: 0.9rem;
  }

  .step p {
    font-size: 0.85rem;
  }

  .step h3 {
    margin-bottom: 5px;
  }

  .highlight, .highlight-small {
    line-height: 1.4;
  }
}