.compensation-section .compensation-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.compensation-section .compensation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.compensation-section .loan-type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.compensation-section .compensation-header {
    position: relative;
    overflow: hidden;
}

.compensation-section .compensation-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 0;
}

.compensation-section .list-unstyled li {
    font-size: 0.95rem;
    color: #666;
}

.compensation-section .h1 {
    font-size: 2.5rem;
    color: inherit;
}

.hover-shadow {
    transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.transition {
    transition: all 0.3s ease;
}

.rounded-4 {
    border-radius: 1rem;
}

.rounded-top-4 {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

@media (max-width: 768px) {
    .compensation-section .compensation-card {
        margin-bottom: 2rem;
    }

    .compensation-section .h1 {
        font-size: 2rem;
    }
}
