/* =======================
   TESTIMONIALS SECTION - КРАСИВЫЙ СЛАЙДЕР
   ======================= */
.testimonial-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 40px;
}

.testimonial-slider-container {
  overflow: hidden;
  border-radius: 32px;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 20px;
}

.testimonial-card {
  background: white;
  border-radius: 32px;
  padding: 40px 32px;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(106, 17, 203, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 48px -16px rgba(106, 17, 203, 0.2);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: #6a11cb;
  opacity: 0.3;
  margin-bottom: 20px;
  display: inline-block;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #1e293b;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.author-info {
  text-align: left;
}

.author-name {
  display: block;
  font-weight: 700;
  color: #0f172a;
  font-size: 1rem;
}

.author-title {
  display: block;
  font-size: 0.85rem;
  color: #6a11cb;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-nav:hover {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  border-color: transparent;
}

.testimonial-nav:hover i {
  color: white;
}

.testimonial-nav i {
  font-size: 1.2rem;
  color: #1e293b;
  transition: color 0.2s ease;
}

.testimonial-nav.prev {
  left: -10px;
}

.testimonial-nav.next {
  right: -10px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  padding: 0;
}

.testimonial-dot.active {
  width: 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.testimonial-dot:hover {
  background: #6a11cb;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .testimonial-wrapper {
    padding: 20px 30px;
  }
  
  .testimonial-card {
    padding: 28px 20px;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .testimonial-nav {
    width: 36px;
    height: 36px;
  }
  
  .testimonial-nav.prev {
    left: -5px;
  }
  
  .testimonial-nav.next {
    right: -5px;
  }
  
  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
}







 .cookie-banner {
            position: fixed;
            bottom: 10px;
            right: 10px;
            width: 300px;
            background-color: #444;
            color: #fff;
            padding: 20px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            box-sizing: border-box;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .cookie-banner.show {
            opacity: 1;
        }
        .cookie-banner p {
            margin: 0;
            margin-bottom: 10px;
            font-size: 14px;
        }
        .cookie-banner button {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .cookie-banner button:hover {
            background-color: #0056b3;
        }
* {
    background-size: cover;
    background-position: center center;
}
body {
	margin: 0px;
}
