.why-partner-section {
    padding: 30px 0;
    background-color: #ffffff;
}

.why-partner-card {
    background-color: #f5f5f5; 
    border-radius: 30px;
    padding: 50px 40px;
}

.partner-main-img {
    border-radius: 24px;
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.partner-img-placeholder {
    width: 100%;
    height: 350px;
    background-color: #e0e0e0;
    border-radius: 24px;
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    right: 30px;
    background-color: #D11F76; 
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 4px solid #f5f5f5; 
    box-shadow: 0 4px 10px rgba(209, 31, 118, 0.3);
}

.partner-label {
    color: #8c98a5;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.partner-title {
    color: #1e293b;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 25px;
}

.partner-title .highlight {
    color: #e71f85;
}

.benefits-grid .benefit-item {
    gap: 15px;
}

.benefit-icon-container {
    background-color: #D11F76;
    color: #ffffff;
    min-width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.benefit-texts h4 {
    color: #D11F76; 
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.benefit-texts p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.m-t-30 { margin-top: 30px; }

@media (max-width: 991px) {
    .why-partner-card {
        padding: 30px 20px;
    }
    .partner-title {
        font-size: 26px;
    }
    .floating-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -25px;
    }
    .benefits-grid {
        margin-top: 45px;
    }
}