body {
    font-family: 'Roboto', sans-serif;
}

.review-image {
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.faq-item {
    background-color: #176BF0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #104FB3;
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-question {
    padding: 20px;
    border-radius: 12px;
}

.faq-answer {
    padding: 20px;
    border-radius: 0 0 12px 12px;
}