/* Additional styles for testimonials and FAQ */

/* Testimonial Styles */
.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.testimonial-role {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}

.testimonial-stars {
    font-size: 18px;
    color: #FFD700;
    margin: 10px 0;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
    font-style: italic;
    margin: 0;
}

/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 15px 0;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badges img {
    max-width: 100%;
    height: auto;
    filter: invert(1) brightness(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonial-header {
        flex-direction: row;
        text-align: left;
    }

    .testimonial-photo {
        width: 60px;
        height: 60px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 15px;
    }
}