.tt-legal-page {
    padding: 48px 0 70px;
    background: #f8f9fb;
}

.tt-legal-header {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(18, 38, 63, 0.06);
    padding: 32px 36px;
    margin-bottom: 28px;
}

.tt-legal-title {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 18px;
    color: #1c2331;
}

.tt-legal-intro p {
    margin-bottom: 14px;
    color: #374151;
    line-height: 1.7;
}

.tt-legal-section {
    margin-bottom: 32px;
}

.tt-legal-section-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 18px;
    color: #1f2937;
}

.tt-legal-accordion {
    margin: 0;
    padding: 0;
}

.tt-legal-item {
    border: 1px solid rgba(27, 51, 84, 0.08);
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.tt-legal-item:hover {
    box-shadow: 0 18px 38px rgba(18, 36, 60, 0.08);
    transform: translateY(-1px);
}

.tt-legal-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 600;
    color: #243248;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.15s ease;
}

.tt-legal-question i {
    margin-left: 12px;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.tt-legal-question.open {
    color: #0a66ff;
}

.tt-legal-question.open i {
    transform: rotate(180deg);
}

.tt-legal-answer {
    display: none;
    border-top: 1px solid rgba(27, 51, 84, 0.08);
    background: #f8fbff;
}

.collapse {
    visibility: visible;
}

.tt-legal-answer-body {
    padding: 20px 22px;
    color: #2f3c52;
    line-height: 1.65;
    font-size: 15px;
}

.tt-legal-answer-body p {
    margin-bottom: 12px;
}

.tt-legal-answer-body ul,
.tt-legal-answer-body ol {
    padding-left: 24px;
    margin-bottom: 12px;
}

.tt-legal-empty {
    color: #6b7280;
    font-size: 14px;
    padding: 16px;
    background: #ffffff;
    border: 1px dashed rgba(18, 38, 63, 0.18);
    border-radius: 6px;
}

@media (max-width: 767px) {
    .tt-legal-header {
        padding: 24px 20px;
    }

    .tt-legal-title {
        font-size: 26px;
    }

    .tt-legal-question {
        padding: 16px 18px;
        font-size: 15px;
    }

    .tt-legal-answer-body {
        padding: 18px;
    }
}
