.cs-wrapper {
    background-color: #F5F5F5;
    padding: 80px 24px;
    display: flex;
    justify-content: center;
    font-family: sans-serif;
    border-radius: 16px;
}

.cs-content {
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cs-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.cs-dots span {
    display: block;
    width: 12px;
    height: 12px;
    background-color: #EC6F1F;
    border-radius: 50%;
}

.cs-eyebrow {
    color: #EC6F1F;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.cs-title {
    color: #1E3A5F;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.cs-subtitle {
    color: #1E3A5F;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 32px 0;
}

.cs-subtitle span {
    color: #EC6F1F;
}

.cs-description {
    color: #5a5a5a;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 48px 0;
    max-width: 600px;
}

.cs-divider {
    width: 100px;
    height: 2px;
    background-color: #DCDCDC;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cs-wrapper {
        padding: 60px 16px;
    }

    .cs-title {
        font-size: 36px;
    }

    .cs-subtitle {
        font-size: 20px;
    }

    .cs-description {
        font-size: 16px;
    }
}