.sls-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #222;
}

.sls-header {
    text-align: center;
    margin-bottom: 60px;
}

.sls-eyebrow {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #267F53;
    margin-bottom: 16px;
}

.sls-headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 800px;
}

.sls-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.sls-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sls-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px #fff3f9;
}

.sls-card-image {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    margin-bottom: 20px;
    object-fit: contain;
}

.sls-card-text {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    color: #444;
}

.sls-highlight {
    background: #231B1B;
    color: #ffffff;
    border-radius: 20px;
    padding: 64px 32px;
    text-align: center;
}

.sls-highlight p {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 auto;
    max-width: 800px;
}

@media (max-width: 768px) {
    .sls-grid {
        grid-template-columns: 1fr;
    }
    
    .sls-headline {
        font-size: 36px;
    }
    
    .sls-highlight p {
        font-size: 24px;
    }
}
