/* Compact Trust Indicators Styles */
.trust-indicators-compact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    padding: 20px;
    background: rgba(52, 152, 219, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(52, 152, 219, 0.5);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.trust-item-small {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trust-item-small:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.trust-icon-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e67e22, #d35400);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.trust-icon-small i {
    color: white;
    font-size: 18px;
}

.trust-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.trust-title-small {
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.trust-details {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Responsive styles */
@media (max-width: 768px) {
    .trust-indicators-compact {
        padding: 15px;
    }
    
    .trust-item-small {
        padding: 8px;
    }
    
    .trust-icon-small {
        width: 35px;
        height: 35px;
    }
    
    .trust-icon-small i {
        font-size: 16px;
    }
    
    .trust-title-small {
        font-size: 13px;
    }
    
    .trust-details {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .trust-indicators-compact {
        padding: 12px;
        gap: 10px;
    }
    
    .trust-item-small {
        gap: 10px;
    }
    
    .trust-icon-small {
        width: 30px;
        height: 30px;
    }
    
    .trust-icon-small i {
        font-size: 14px;
    }
}
