.promo-section-warp {
    border-radius: 15px;
    overflow: hidden;
}

.promo-section {
    min-height: 200px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-section-1 {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.promo-section-2 {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
}

.promo-section-3 {
    background: linear-gradient(135deg, #f3e5f5 0%, #ce93d8 100%);
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
    flex: 1;
}

.promo-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.promo-heading {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.promo-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}


@media (max-width: 768px) {
    .promo-section {
        background-size: 120px;
        background-position: right top;
        min-height: 160px;
        padding: 20px;
    }
    
    .promo-content {
        max-width: 70%;
    }
    
    .promo-heading {
        font-size: 1.4rem;
    }
}