.legal-main {
    width: calc(100% - 90px);
    margin-left: 90px;
    padding: 20px 16px;
    height: calc(100% - 125px);
    overflow-y: scroll;
    transition: .2s;
}

.legal-main.active {
    width: calc(100% - 202px);
    margin-left: 202px;
}

.legal-content {
    background-color: #f6f6f6;
    border: 1px solid #0000001a;
    border-radius: 10px;
    padding: 28px 32px;
    margin-bottom: 30px;
}

.legal-title {
    font-size: 22px;
    font-weight: bold;
    color: #111;
    margin-bottom: 4px;
}

.legal-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
}

.legal-content h2 {
    font-size: 15px;
    font-weight: bold;
    color: #056DFF;
    margin: 22px 0 8px;
}

.legal-content p {
    font-size: 13px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 8px;
}

.legal-content ul {
    padding-left: 18px;
    margin-bottom: 10px;
}

.legal-content ul li {
    list-style: disc;
    font-size: 13px;
    color: #444;
    line-height: 1.75;
}

.legal-content a {
    color: #056DFF;
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    background: #fff;
    color: #333;
    outline: none;
    font-family: inherit;
    transition: border-color .2s;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #056DFF;
}

.contact-submit {
    align-self: flex-start;
    padding: 9px 24px;
    background-color: #056DFF;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: opacity .2s;
}

.contact-submit:hover {
    opacity: .85;
}

.share-section {
    margin-bottom: 30px;
}

.share-box {
    background-color: #f6f6f6;
    border: 1px solid #0000001a;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.share-desc {
    font-size: 13px;
    color: #555;
}

.share-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    border: none;
    transition: opacity .2s;
}

.share-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.share-btn:hover { opacity: .85; }
.share-facebook  { background-color: #1877f2; }
.share-twitter   { background-color: #1da1f2; }
.share-reddit    { background-color: #ff4500; }
.share-whatsapp  { background-color: #25d366; }
.share-copy      { background-color: #056DFF; }

#copy-message {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    z-index: 99999;
}

.section-title {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 17px;
    margin-bottom: 16px;
}

@media screen and (max-width: 769px) {
    .legal-main {
        width: 100%;
        margin-left: 0;
        padding: 14px 10px;
        height: auto;
        overflow-y: visible;
    }

    .legal-content {
        padding: 18px 16px;
    }
}
