.page-header {
        background: linear-gradient(135deg, rgba(138, 100, 179, 0.1), rgba(163, 130, 199, 0.2));
        border-radius: 20px;
        padding: 50px 20px;
        text-align: center;
        margin-bottom: 40px;
        border: 1px solid rgba(138, 100, 179, 0.1);
        position: relative;
        overflow: hidden;
    }
    .page-header::before {
        content: '\f005';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        font-size: 150px;
        color: rgba(138, 100, 179, 0.05);
        top: -30px;
        right: 10%;
        transform: rotate(15deg);
    }
    
    .review-card {
        border-radius: 16px;
        border: 1px solid rgba(138, 100, 179, 0.1) !important;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        background: #FDFBFF;
        overflow: hidden;
        cursor: pointer;
        height: 100%;
    }
    .review-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(138, 100, 179, 0.15) !important;
        border-color: #8A64B3 !important;
    }
    
    .review-img-wrapper {
        position: relative;
        overflow: hidden;
        aspect-ratio: 3/4;
        background-color: #f8f9fa;
    }
    .review-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .review-card:hover .review-img-wrapper img {
        transform: scale(1.05);
    }
    
    .zoom-overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(138, 100, 179, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .review-card:hover .zoom-overlay { opacity: 1; }
    .zoom-overlay i {
        color: white; font-size: 2.5rem; transform: scale(0.5);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .review-card:hover .zoom-overlay i { transform: scale(1); }

    .stats-overview {
        background: white; border-radius: 20px; padding: 30px;
        border: 1px solid rgba(138, 100, 179, 0.1);
        box-shadow: 0 10px 30px rgba(138, 100, 179, 0.05); margin-bottom: 40px;
    }
    .stat-item { text-align: center; padding: 15px; }
    .stat-item:not(:last-child) { border-right: 1px solid rgba(138, 100, 179, 0.1); }
    
    @media (max-width: 767.98px) {
        .stat-item:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(138, 100, 179, 0.1); }
    }
