.wcoe-wrap {
    max-width: 760px;
    margin: 32px auto;
    padding: 0 20px;
    color: #1f2933;
}

.wcoe-wrap h1 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
}

.wcoe-lead {
    margin: 0 0 24px;
    color: #52606d;
}

.wcoe-form {
    display: grid;
    gap: 18px;
}

.wcoe-form label {
    display: grid;
    gap: 7px;
    font-weight: 600;
}

.wcoe-form input,
.wcoe-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #bcccdc;
    border-radius: 6px;
    padding: 12px;
    font: inherit;
    background: #fff;
}

.wcoe-form textarea {
    resize: vertical;
}

.wcoe-check {
    grid-template-columns: 20px 1fr;
    align-items: start;
    font-weight: 400;
}

.wcoe-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.wcoe-button {
    justify-self: start;
    border: 0;
    border-radius: 6px;
    padding: 12px 18px;
    color: #fff;
    background: #126e82;
    font-weight: 700;
    cursor: pointer;
}

.wcoe-button:hover,
.wcoe-button:focus {
    background: #0b5667;
}

.wcoe-danger {
    background: #b42318;
}

.wcoe-danger:hover,
.wcoe-danger:focus {
    background: #8f1d14;
}

.wcoe-link-button {
    margin-top: 12px;
    border: 0;
    padding: 0;
    color: #126e82;
    background: transparent;
    text-decoration: underline;
    cursor: pointer;
}

.wcoe-summary {
    border: 1px solid #d9e2ec;
    border-radius: 8px;
    padding: 20px;
    background: #f8fafc;
}

.wcoe-summary h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.wcoe-summary dl {
    display: grid;
    grid-template-columns: minmax(150px, 220px) 1fr;
    gap: 10px 18px;
    margin: 0;
}

.wcoe-summary dt {
    font-weight: 700;
}

.wcoe-summary dd {
    margin: 0;
}

.wcoe-actions {
    margin-top: 18px;
}

.wcoe-notice {
    margin: 0 0 22px;
    border-radius: 8px;
    padding: 14px 16px;
}

.wcoe-notice ul,
.wcoe-notice p {
    margin: 0;
}

.wcoe-error {
    border: 1px solid #f8b4b4;
    background: #fff1f1;
    color: #8f1d14;
}

.wcoe-success {
    border: 1px solid #a7d8bd;
    background: #effcf6;
    color: #17643a;
}
.wcoe-floating-link {
 position: fixed;
    left: 18px;
    right: auto;
    bottom: 28px;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    max-width: calc(100vw - 36px);
    box-sizing: border-box;
    border-radius: 1px;
    padding: 10px 16px;
    color: #ffffff;
    background: #1c2629;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;

}

.wcoe-floating-link:hover,
.wcoe-floating-link:focus {
    color: #ffffff;
    background: #0b5667;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
    .wcoe-wrap {
        margin: 22px auto;
        padding: 0 16px;
    }

    .wcoe-wrap h1 {
        font-size: 26px;
    }

    .wcoe-summary dl {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
