body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  color: #f5f5f5;
  background-color: #1a1a1a;
  line-height: 1.6;
}

a {
  color: #f97316;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ea580c;
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.section-hero {
  background-color: #222222;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 0;
  gap: 30px;
}

.hero img {
  max-width: 100%;
  width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-text {
  flex: 1;
  padding: 20px;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #f97316;
}

.hero-text ul {
  list-style: disc inside;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  padding-left: 0;
  color: #d4d4d4;
}

.section-about {
  padding: 60px 0;
  background-color: #222222;
}

.about {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.about-box {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.about-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 25px;
  color: #f97316;
}

.about-box ul {
  list-style: none;
  padding-left: 20px;
  line-height: 1.8;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #d4d4d4;
}

.about-box ul li::before {
  content: '✅';
  margin-right: 10px;
  color: #f97316;
}

.about-box p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #d4d4d4;
  margin-top: 20px;
}

/* Стили для слайдеров */
.slider {
  position: relative;
  width: 50%;
  min-width: 300px;
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.section-about .slider {
  width: 50%;
}

.reviews .slider {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
}

.swiper-wrapper {
  display: flex;
}

.section-about .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.reviews .swiper-slide p {
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #d4d4d4;
  background-color: #2d2d2d;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin: 0;
  text-align: center;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(249, 115, 22, 0.7);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.slider-btn:hover {
  background: #ea580c;
}

.section-about .slider-btn.prev,
.reviews .slider-btn.prev {
  left: 10px;
}

.section-about .slider-btn.next,
.reviews .slider-btn.next {
  right: 10px;
}

.highlight, .trust {
  padding: 60px 0;
  background-color: #2d2d2d;
}

.highlight ul, .trust ul {
  list-style: none;
  padding-left: 20px;
  line-height: 1.8;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #d4d4d4;
}

.highlight ul li::before {
  content: attr(data-icon);
  margin-right: 10px;
  color: #f97316;
}

.trust ul li::before {
  content: '✅';
  margin-right: 10px;
  color: #f97316;
}

.cta {
  padding: 60px 0;
  text-align: center;
  background-color: #3a3a3a;
}

.cta p {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  margin-bottom: 25px;
  color: #f5f5f5;
}

.cta a {
  display: inline-block;
  background-color: #f97316;
  color: #fff;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.cta a:hover {
  background-color: #ea580c;
  text-decoration: none;
}

.contacts {
  padding: 60px 0;
  background-color: #222222;
}

.contacts h3 {
  font-size: clamp(1.6rem, 3.5vw, 1.9rem);
  margin-bottom: 15px;
  color: #f97316;
}

.contacts p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #d4d4d4;
}

.reviews {
  padding: 60px 0;
  background-color: #2d2d2d;
}

.reviews h3 {
  font-size: clamp(1.5rem, 3vw, 1.7rem);
  margin-bottom: 25px;
  color: #f97316;
  text-align: center;
}

.footer {
  padding: 30px 0;
  background-color: #1a1a1a;
  color: #f5f5f5;
  text-align: center;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.footer a {
  color: #f97316;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ea580c;
}

.adres-box {
  display: flex;
  justify-content: space-between;
}

/* Адаптивность */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }

  .hero img {
    width: 100%;
    max-width: 100%;
  }

  .hero-text {
    padding: 20px 0;
  }

  .about {
    flex-direction: column;
  }

  .slider {
    width: 100%;
  }

  .section-about, .highlight, .trust, .contacts, .reviews, .cta {
    padding: 40px 0;
  }

  .slider-btn {
    font-size: 20px;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: clamp(1.8rem, 4vw, 2rem);
  }

  .about-box h2 {
    font-size: clamp(1.6rem, 3.5vw, 1.8rem);
  }

  .cta a {
    padding: 10px 20px;
  }

  .slider-btn {
    font-size: 18px;
    padding: 6px;
  }

  .reviews .swiper-slide p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    padding: 15px;
  }
}