/* Quantification Banner */
.quantification-banner {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.quantification-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.banner-content h3 {
    font-size: 22px;
    margin-bottom: 6px;
    color: white;
}

.banner-content p {
    font-size: 14px;
    color: #94a3b8;
}

.banner-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    white-space: nowrap;
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
}

@media (max-width: 768px) {
    .quantification-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-btn {
        width: 100%;
    }
}



