body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
}

h1, h2 {
  margin-bottom: 10px;
}

a {
  text-decoration: none;
}

.top-banner {
  position: relative;
  background: #2b2b2b;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  background: url('img/logo-banner.png') center/contain no-repeat;
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.buttons {
  margin-top: 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  margin-right: 10px;
}

.btn.orange {
  background: #f7941e;
  color: #fff;
}

.btn.white {
  background: #fff;
  color: #000;
}

.icons-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #f5f5f5;
  padding: 15px 0;
  font-weight: bold;
  gap: 30px;
}

.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.divider {
  width: 60px;
  height: 4px;
  background: #002147;
  margin: 20px auto;
  border: none;
  border-radius: 3px;
}

.cards.three-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card p {
  font-weight: bold;
  padding: 10px;
}

.company-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.company-left img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.company-right {
  flex: 1;
  min-width: 300px;
}

.company-right ul {
  margin-top: 20px;
  padding-left: 20px;
}

.company-right li {
  margin-bottom: 10px;
  list-style: none;
  position: relative;
}

.company-right li::before {
  content: "✔️";
  position: absolute;
  left: -25px;
}

footer {
  background: #2b2b2b;
  color: white;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #f7941e;
}
.reviews {
  background: #f9f9f9;
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.review-card h4 {
  margin: 0;
  font-size: 18px;
  color: #002147;
}

.review-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}
.btn.red {
  background: #d62828;
  color: white;
}

.btn.red:hover {
  background: #b71d1d;
}

.btn.green {
  background: #25d366;
  color: white;
}

.btn.green:hover {
  background: #1da851;
}
/* Мобилка: кнопки одна под одной */
@media (max-width: 600px) {
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .cards.three-cols {
    grid-template-columns: 1fr;
  }

  .section h2 {
    text-align: center;
  }
}
.review-card img {
  display: none;
}
.slider-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin-top: 20px;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider img {
  min-width: 100%;
  height: auto;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }





