* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f4f2;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #1f1c19;
}

.ws-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 24px;
}

.ws-page__container {
    width: 100%;
    max-width: 800px;
}

.ws-page__logo {
    display: block;
    width: 28px;
    height: 28px;
}

.ws-page__brand-name {
    font-size: 14px;
    font-weight: 700;
    color: #1f1c19;
    letter-spacing: 0.01em;
}

.ws-page__title {
    font-size: 32px;
    font-weight: 700;
    color: #1f1c19;
    margin-bottom: 36px;
    line-height: 1.3;
}

.ws-page__content {
    font-size: 14px;
    color: #3d3a37;
    line-height: 1.8;
}

.ws-page__section {
    margin-bottom: 36px;
}

.ws-page__section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f1c19;
    margin-bottom: 12px;
}

.ws-page__section-text {
    color: #3d3a37;
    margin-bottom: 12px;
}

.ws-page__list {
    margin-left: 20px;
    margin-bottom: 12px;
}

.ws-page__list li {
    margin-bottom: 8px;
    color: #3d3a37;
}

.ws-page__back-link {
    display: inline-block;
    padding: 10px 20px;
    background: #1f1c19;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: opacity 0.15s ease;
}

.ws-page__back-link:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .ws-page__title {
        font-size: 24px;
    }

    .ws-page__section-title {
        font-size: 16px;
    }
}