body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
}

header {
  background-color: white;
  padding: 20px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}


.logo img {
  max-width: 100px;
}


main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.content {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  position: relative; /* Добавляем относительное позиционирование */
}

.info-block {
  padding: 10px;
  border-radius: 10px;
  background-color: white;
  /*text-indent: 20px;*/ /* Отступ для каждой строки текста */
  line-height: 1.5; /* Отступы между строками */
}


.floating-button {
  /* ... остальные стили кнопки ... */
  position: absolute; /* Абсолютное позиционирование кнопки */
  bottom: -40px; /* Расстояние от нижней границы блока */
  left: 50%;
  transform: translateX(-50%);
}

.testimonial {
  padding: 40px 0;
}

.testimonial-block {
  background-color: gray;
  border-radius: 15px;
  padding: 20px;
  margin: 10px auto;
  width: 80%;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* Добавляем вертикальный отступ между отзывами */

}

.avatar {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 15px;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.rating {
  margin-top: 5px;
}

.star {
  color: gold;
}

.footer {
  background-color: #333; /* Темно-серый цвет фона */
  padding: 40px 0;
  color: white; /* Белый цвет текста */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  margin-right: 30px;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 14px;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  align-items: center;
}

.social-link {
  display: inline-block;
  margin-right: 10px;
}

.social-link img {
  width: 30px;
  height: 30px;
}




.services {
  position: relative;
  padding: 40px 0;
}


.services-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-block {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  margin: 0 10px;
  text-align: center;
  width: 250px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin: 0 auto 15px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.circle-list {
  list-style-type: none;
  padding: 0;
}

.circle-list li {
  position: relative;
  padding-left: 40px; /* Отступ слева для текста */
  margin-bottom: 10px; /* Отступ между пунктами списка */
  line-height: 1.4;
}

.circle-list li::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 18px;
  width: 10px;
  height: 10px;
  background-color: #007bff; /* Синий цвет */
  border-radius: 50%;
}

.floating-button {
  text-decoration: none;
  line-height: 45px;
  border-radius: 45px;
  margin: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 3px;
  font-weight: 600;
  color: #524f4e;
  background: white;
  box-shadow: 0 8px 15px rgba(0, 0, 0, .1);
  transition: .3s;
  display: inline-block;
  width: auto; /* Уберите фиксированную ширину */
  height: auto; /* Уберите фиксированную высоту */
  padding: 20px 40px; /* Добавьте отступы для внутреннего контента */
  position: relative;
  overflow: hidden;

}
.button-content {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.floating-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #d9edff;
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 1;
  transition: transform 0.3s, background-color 0.3s, width 0.3s;
}

.floating-button:hover::before {
  transform: scaleX(1);
  background: #6fb6f7;
  width: 100%; 
}




.contact-info {
  display: flex;
  align-items: center;
}

.contact-icon {
  margin-right: 10px;
}

.contact-icon img {
  width: 20px;
  height: 20px;
}
h1 {
    margin-left: 40px;
    margin-right: 40px;
}
@media (max-width: 1080px) {
    .services-container {
        display: grid;   
    }
    .service-block {
        margin: 10px;
    }
    .footer-content {
        display: block;   
    }
    .footer-section {
        
    }
}
.text-center {
    text-align: center;
}