.cls-page {
    border-radius: 12px;
    width: 100%;
    max-width: 1024px;
    height: 100vh;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.cls-line-connect {
    padding: 10px 0px;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    width: 100%;
    max-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    white-space: normal;
    word-wrap: break-word;
    background-color: #06c755;
    margin: 10px auto;
}

.cls-line-disconnect {
    padding: 10px 0px;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    width: 100%;
    max-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    white-space: normal;
    word-wrap: break-word;
    background-color: #808080;
    margin: 10px auto;
}


.cls-line-header {
    text-align: center;
}

.cls-line-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.cls-line-lead {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}

.cls-line-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 20px 0;
}

.cls-line-benefit {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 16px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    text-align: center;
    color: #333;
}

.cls-line-label {
    background-color: #06c755;
    color: #fff;
    border-radius: 999px;
    display: inline-block;
    font-size: 13px;
    padding: 4px 10px;
    margin-bottom: 10px;
}

.cls-line-benefit strong {
    display: block;
    margin-top: 6px;
    color: #06c755;
    font-weight: bold;
    font-size: 1.1em;
}

.cls-line-note {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-bottom: 10px;
}

.cls-toggle-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.cls-toggle-item {
    display: flex;
    flex-direction: column;
}

.cls-toggle-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.cls-toggle-description {
    font-size: 14px;
    margin: 0 0 5px 0;
    color: #555;
}

.cls-toggle-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.cls-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cls-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.cls-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cls-toggle-switch input:checked + .cls-toggle-slider {
    background-color: #4caf50;
}

.cls-toggle-switch input:checked + .cls-toggle-slider:before {
    transform: translateX(22px);
}