@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}


.service-card {
  background-color: #ffffff; /* Начальный цвет фона */
  color: #514c45; /* Начальный цвет текста */
  border-radius: 8px; /* Закругленные углы */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Легкая тень */
  padding: 20px; /* Отступы внутри блока */
  transition: all 0.3s ease-in-out; /* Плавная анимация для всех изменений */
}

.service-card:hover {
  background-color:#a89d8f; /* Цвет фона при наведении */
  color: #514c45; /* Цвет текста при наведении */
  transform: scale(1.05); /* Легкое увеличение блока при наведении */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Увеличенная тень при наведении */
}
/* Основные стили */


.container {
  width: 90%;
  margin: 0 auto;
}

.approach {
  padding: 40px 0;
  text-align: center;
  background-color: #ffffff;
}


.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.image-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f9f9f9;
}

.image-item img {
  width: 100%;
  height: auto;
  display: block;
}

.image-item p {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.9rem;
  }

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

.post-box{
    width:1000px;
}

@media (max-width: 1024px) {
  .post-box {
    width:98%;
  }
}
.img-main{
  height:350px;
}

/* Контейнер для блоков */
.pricing-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 20px;
  gap: 20px;
  padding: 20px;
}

/* Блоки с предложениями */
.pricing-block {
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  padding: 20px;
  border-radius: 8px;
  width: 30%;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.step-number {
  font-size: 36px;
  font-weight: bold;
  color: #e7870e;
}

.step-title {
  font-size: 20px;
  color: #282725;
  margin: 10px 0;
}

.price {
  font-size: 28px;
  font-weight: bold;
  color: #86806a;
  margin: 10px 0;
}

.step-description {
  font-size: 14px;
  color: #86806a;
}

.btn {
  background-color: #ffffff;
  color: #0ea5e7;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}



/* Адаптивность */
@media (max-width: 768px) {
  .pricing-block {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .pricing-block {
    width: 100%;
  }
}

/* Блоки с предложениями */
.blog-block {
  box-sizing: border-box;
  border-radius:5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.reviews-section {
            background-color: #3c3837;
            color: white;
            padding: 50px 20px;
        }

        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }

        .review-card {
            background-color: #426574;
            padding: 20px;
            border-radius: 10px;
            width: calc(33% - 20px);
            box-sizing: border-box;
            color: white;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-10px);
        }

        .review-card h3 {
            font-size: 1.2em;
            margin-bottom: 15px;
            color: #0ea5e7;
        }

        .review-card p {
            font-size: 1em;
            margin-bottom: 20px;
            color: white;
        }

        .review-card .author {
            font-weight: bold;
            font-size: 1.1em;
            color: #0ea5e7;
        }

        @media (max-width: 768px) {
            .review-card {
                width: calc(50% - 20px);
            }
        }

        @media (max-width: 480px) {
            .review-card {
                width: 100%;
            }
        }
        /* Контейнер для основного контента */
.section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Стиль заголовков секций */
.section-title {
    font-size: 2em;
    color: #3c3837;
    margin-bottom: 20px;
    text-align: center;
}

/* Стиль для описаний в секциях */
.section-description {
    font-size: 1.2em;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}

/* Секция "Бизнес-модель" */
.business-model {
    background-color: #426574;
    color: white;
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 10px;
}

.business-model h2 {
    color: #0ea5e7;
    text-align: center;
    margin-bottom: 20px;
}

.business-model p {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: justify;
}

.business-model ul {
    margin-top: 20px;
    list-style-type: none;
    padding: 0;
}

.business-model ul li {
    margin: 10px 0;
    font-size: 1.1em;
    color: white;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .content {
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.8em;
    }

    .business-model h2 {
        font-size: 1.8em;
    }

    .business-model p {
        font-size: 1em;
    }

    .business-model ul li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .section-description {
        font-size: 1em;
    }

    .business-model p {
        font-size: 0.9em;
    }
}