.why-sel-matters-section {
    padding: 80px 0;
    background: #fff;
}

.why-sel-matters-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.sel-content-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.sel-image-column {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}

.sel-feature-image {
    position: relative;
}

.sel-feature-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.sel-quote-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 50%;
    background: #D1ED45;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quote-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: #000;
    margin-bottom: 8px;
}

.quote-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.sel-items-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.sel-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #E6E6E6;
    border-left: 4px solid #508991;
    border-radius: 12px;
    padding: 24px;
}

.sel-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #508A92;
}

.sel-item-icon svg {
    width: 32px;
    height: 32px;
}

.sel-item-content {
    flex: 1;
}

.sel-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 32px;
    color: #000;
    margin: 0 0 8px 0;
}

.sel-item-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
    margin: 0;
}

@media (max-width: 968px) {
    .sel-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-sel-matters-section .section-main-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .why-sel-matters-section .section-subtitle {
        font-size: 18px;
        line-height: 28px;
    }
    
    .sel-item-title {
        font-size: 18px;
        line-height: 28px;
    }
    
    .sel-item-description {
        font-size: 12px;
        line-height: 20px;
    }
}

@media (max-width: 768px) {
    .why-sel-matters-section {
        padding: 60px 0;
    }
    
    .why-sel-matters-section .section-label {
        font-size: 18px;
        line-height: 26px;
        padding: 6px 20px;
    }
    
    .why-sel-matters-section .section-main-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .why-sel-matters-section .section-subtitle {
        font-size: 16px;
        line-height: 26px;
    }
    
    .sel-image-column {
        padding-bottom: 40px;
        padding-right: 30px;
    }
    
    .sel-quote-overlay {
        bottom: -40px;
        right: -20px;
        width: 85%;
        padding: 16px;
    }
    
    .sel-items-column {
        gap: 16px;
    }
    
    .sel-item {
        padding: 18px;
        gap: 16px;
    }
    
    .sel-item-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .sel-item-title {
        font-size: 17px;
        line-height: 26px;
    }
    
    .sel-item-description {
        font-size: 12px;
        line-height: 20px;
    }
    
    .quote-text {
        font-size: 15px;
        line-height: 22px;
    }
    
    .quote-author {
        font-size: 12px;
    }
}

