body {
    margin: 0;
}

* {
    box-sizing: border-box;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
}

.comments-section {
    margin: 40px 0;
}
.comments-section .comments-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.comment-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    display: flex;
    gap: 10px;
}
.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    overflow: hidden;
}
.comment-avatar img {
    width: 100%;
    height: auto;
    display: block;
}
.comment-content {
    flex: 1;
}
.comment-author {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 5px;
}
.comment-text {
 
    color: #333;
}
.comment-reply {
    margin-left: 10px;
    margin-top: 15px;
    border-left: 3px solid #ddd;
    padding-left: 10px;
}

/* Кнопка "завантажити ще" */
.load-more-comments {
    text-align: center;
    margin: 20px 0;
}
.load-more-button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
}
.load-more-button:hover {
    background-color: #0056b3;
}
.hidden-comments {
    display: none;
}

/* FAQ-аккордеон */

/* disclaimers, references */

/* Адаптивність */
@media screen and (max-width: 600px) {
    .comment-reply {
        margin-left: 0px;
    }
}

.leave-comment-section {
    margin-top: 30px;
    margin-bottom: 40px;
}
.leave-comment-section h3 {
    margin-bottom: 10px;
}
.leave-comment-section form {
    display: flex !important;
    flex-direction: column;
    max-width: 100%;
    gap: 10px;
}
.leave-comment-section input,
.leave-comment-section textarea {
    padding: 10px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}
.leave-comment-section button {
    padding: 10px;
    background-color: #007BFF;
    border: none;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}
.leave-comment-section button:hover {
    background-color: #0056b3;
}

/* POPUP (overlay) */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.popup-message {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    text-align: center;
    max-width: 300px;
    line-height: 1.4;
}
.popup-message p {
    margin-bottom: 15px;
}
.popup-message button {
    background: #007bff;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.popup-message button:hover {
    background: #0056b3;
}
@media (min-width: 1024px) {
    .responsive-image {
        max-width: 550px !important;
    }
}

.comment-avatar img {
    margin-top: 0 !important;
}