<!-- Стилі для мобільної адаптації -->
  <style>
    @media (max-width: 768px) {
      #home .col-md-6.d-flex {
        justify-content: center !important;
        align-items: center !important;
        padding: 10px !important;
      }
      #home .social-icons {
        justify-content: center !important;
        margin-left: 0 !important;
      }
    }

        .icon-circle .initial {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #2196f3;
        /* Синий фон */
        color: white;
        font-weight: bold;
        font-size: 20px;
        font-style: normal;
        /* убираем курсив от <i> */
                font-family: Arial, sans-serif;
                margin-right: 5px;
            }


	  
/* ==========================
   REVIEW FIX (HTML NOT CHANGED)
========================== */

.review {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

/* AUTHOR BLOCK (у тебя icon-circle + h4) */
.review .author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

/* круг с буквой */
.review .icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #009bad;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review .icon-circle .initial {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

/* имя */
.review .author h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #161e39;
}

/* звезды — ЖЁСТКО фиксируем размер */
.review .rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 8px 0 12px;
}

.review .rating .star {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    display: inline-block;
    object-fit: contain;
}

/* контент */
.review .content {
    margin-top: 10px;
}

/* БЛОК ФОТО (убираем inline поведение) */
.review .content div {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* фото ДО/ПОСЛЕ */
.review .content img {
    width: 97px;
    height: 132px;
    object-fit: cover;
    border-radius: 6px;
    transition: 0.25s ease;
}

.review .content img:hover {
    transform: scale(1.05);
}

/* mobile */
@media (max-width: 576px) {
    .review {
        padding: 15px;
    }

    .review .content img {
        width: 80px;
        height: 110px;
    }
}

	  
  </style>
