.legal-wrap {
    width: var(--all-width);
    margin: 24px auto 32px;
    display: flex;
    gap: 20px;
}

.legal-content {
    flex: 1;
    min-width: 0;
}

.legal-sidebar {
    width: 160px;
    flex-shrink: 0;
}

.legal-sidebar-nav {
    background: url(../images/nav-left.png) repeat-x scroll 0 0 black;
    padding-bottom: 5px;
}

.legal-sidebar-nav ul {
    padding: 4px 3px;
}

.legal-sidebar-nav li a {
    color: #4cc6f3;
    font-size: 13px;
    display: block;
    padding: 3px 0;
    transition: color .2s;
}

.legal-sidebar-nav li a:hover,
.legal-sidebar-nav li a.active {
    color: #fff;
    text-decoration: underline;
}

.legal-page-title {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #2a2a2a;
}

.legal-section {
    margin-bottom: 22px;
}

.legal-section h2 {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding: 4px 0;
    border-left: 3px solid #33adff;
    padding-left: 8px;
}

.legal-section h3 {
    font-size: 13px;
    color: #ccc;
    margin: 10px 0 5px;
}

.legal-section p {
    font-size: 12px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section ul {
    padding-left: 16px;
    margin-bottom: 8px;
}

.legal-section ul li {
    list-style: disc;
    font-size: 12px;
    color: #999;
    line-height: 1.8;
}

.legal-section a {
    color: #33adff;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #4cc6f3;
}

.legal-updated {
    font-size: 11px;
    color: #555;
    margin-bottom: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
}

.contact-form label {
    font-size: 12px;
    color: #aaa;
    display: block;
    margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    color: #ccc;
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 2px;
    outline: none;
    font-family: inherit;
    transition: border-color .2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #33adff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form select option {
    background: #111;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #33adff;
    color: #000;
    font-size: 13px;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 3px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    transition: background .2s;
    width: fit-content;
}

.contact-submit:hover {
    background: #4cc6f3;
}

.info-card {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    padding: 12px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.info-card svg {
    width: 18px;
    height: 18px;
    color: #33adff;
    flex-shrink: 0;
    margin-top: 1px;
}

.info-card-text {
    font-size: 12px;
    color: #999;
    line-height: 1.7;
}

.info-card-text strong {
    color: #ccc;
    display: block;
    margin-bottom: 2px;
    font-weight: bold;
}

@media screen and (max-width: 769px) {
    .legal-wrap {
        flex-direction: column;
        padding: 0 12px;
        margin-top: 16px;
    }

    .legal-sidebar {
        width: 100%;
    }

    .legal-sidebar-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
    }

    .legal-sidebar-nav li a {
        padding: 3px 8px;
        border: 1px solid #2a2a2a;
        border-radius: 2px;
    }
}
