/* Credit Score Section Styles */
.credit-score-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.credit-score-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-bg.svg');
    background-repeat: repeat;
    background-size: 200px;
    opacity: 0.05;
    z-index: 0;
}

.credit-score-content {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
}

.credit-score-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credit-score-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.credit-score-tips {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.credit-score-tips li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}

.credit-score-tips li i {
    margin-top: 0.25rem;
    color: var(--primary-color);
}

@media (max-width: 991.98px) {
    .credit-score-content {
        margin-bottom: 2rem;
    }
}