.ds-section {
    background-color: #ffffff;
    padding: 60px 20px;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    box-sizing: border-box;
}

.ds-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ds-header {
    margin-bottom: 40px;
    padding: 0 10px;
}

.ds-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.ds-subtitle {
    font-size: 18px;
    /*color: #6b7280;*/
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.5;
}

.ds-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;

    max-width: 720px;
    margin: 0 auto;
}

.ds-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 15px;
    flex-grow: 1;
    max-width: 205px;
}

.ds-badge-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
}

.ds-badge-link:hover {
    transform: scale(1.05);
}

.ds-badge-link:active {
    transform: scale(0.95);
}

.ds-badge {
    height: 60px;
    width: auto;
    display: block;
}

.ds-credit {
    margin-top: 12px;
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.ds-separator {
    background-color: #d1d5db;

    width: 100%;
    max-width: 240px;
    height: 1px;
    margin: 32px 0;
}

@media (min-width: 768px) {
    .ds-box {
        flex-direction: row;
        padding: 56px;
    }

    .ds-platform {
        width: auto;
    }

    .ds-separator {
        width: 1px;
        height: 100px;
        max-width: none;
        margin: 0 64px;
    }
}

.ds-footer {
    margin-top: 40px;
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.6;
    padding: 0 10px;
}