/* Simplified Testimonial Author Info - DOM Optimization */
.author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.stars {
    color: #ffc107;
    font-size: 16px;
    font-weight: bold;
}

/* DOM SIZE OPTIMIZATION */
.google-reviews,
.footer-reviews,
.offers-container {
    contain: layout;
    will-change: auto;
}

.offer-item {
    contain: layout style;
    will-change: auto;
}

.offer-icon,
.google-logo {
    contain: layout;
    will-change: auto;
}

/* Reduce DOM complexity */
* {
    box-sizing: border-box;
}

