.qrise-avantages-block {
    padding: 4rem 0;
    text-align: center;
}

.qrise-avantages-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.qrise-avantages-title {
    font-size: 32px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.qrise-avantages-subtitle {
    font-size: 16px;
    color: #666;
}

.qrise-avantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.qrise-avantage-card {
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 7px #F9F7F5 solid;
    height: 435px;
}

.qrise-avantage-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;

}

.qrise-avantage-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgb(135 135 135 / 37%) 0%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: none;
}

.qrise-avantage-card-title {
    font-size: 24px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
}

.qrise-avantage-card-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 14px;
    padding-bottom: 0px !important;
}

@media (max-width: 992px) {
    .qrise-avantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .qrise-avantages-block {
        margin: 0px 30px;
    }
    .qrise-avantage-content {
        padding: 10px;
    }
    .qrise-avantage-card-subtitle {
        line-height: 14px;
        font-size: 12px;
    }
    .qrise-avantage-card-title {
        font-size: 16px;
    }
    .qrise-avantage-card {
        max-height: 200px;
    }
}

.qrise-avantages-cta {
    margin-top: 3rem;
    text-align: center;
}

.qrise-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    background: linear-gradient(to right, #FF5733, #FF2E63);
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.qrise-cta-button:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.qrise-cta-button svg {
    transition: transform 0.3s ease;
}

.qrise-cta-button:hover svg {
    transform: translateX(5px);
}