/* Legal Pages CSS (Terms of Use, Privacy Policy) */

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 40px 80px;
}

.terms-header {
    text-align: center;
    margin-bottom: 60px;
}

.terms-header h1 {
    font-size: 48px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.terms-header .last-updated {
    color: #64748b;
    font-size: 16px;
    margin: 0;
}

.terms-content {
    color: #1e293b;
    line-height: 1.8;
}

.terms-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #171717;
    margin-top: 48px;
    margin-bottom: 20px;
}

.terms-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #171717;
    margin-top: 32px;
    margin-bottom: 16px;
}

.terms-content p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #475569;
}

.terms-content ul,
.terms-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
    color: #475569;
}

.terms-content li {
    margin-bottom: 12px;
    font-size: 16px;
}

.terms-content strong {
    color: #171717;
    font-weight: 600;
}

.highlight-box {
    background: rgba(54, 117, 255, 0.05);
    border-left: 4px solid #3675ff;
    padding: 24px;
    margin: 24px 0;
    border-radius: 8px;
}

.highlight-box p {
    margin-bottom: 0;
    color: #1e293b;
}

.contact-section {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    margin-top: 48px;
}

.contact-section h3 {
    margin-top: 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.data-table th,
.data-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.data-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #171717;
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .terms-container {
        padding: 100px 20px 60px;
        /* Reduced padding */
    }

    .terms-header {
        margin-bottom: 32px;
        /* Reduced margin */
        text-align: left;
        /* Better readability on mobile */
    }

    .terms-header h1 {
        font-size: 32px;
        /* Smaller title */
        margin-bottom: 8px;
    }

    .terms-content h2 {
        font-size: 22px;
        /* Smaller headings */
        margin-top: 32px;
        /* Reduced spacing */
        margin-bottom: 12px;
    }

    .terms-content h3 {
        font-size: 18px;
        margin-top: 24px;
        margin-bottom: 10px;
    }

    .terms-content p,
    .terms-content li {
        font-size: 15px;
        /* Slightly smaller text */
        line-height: 1.6;
        /* Tighter line height */
        margin-bottom: 12px;
    }

    .highlight-box {
        padding: 16px;
        margin: 16px 0;
    }

    .contact-section {
        padding: 20px;
        margin-top: 32px;
    }

    .data-table {
        font-size: 13px;
    }

    .data-table th,
    .data-table td {
        padding: 10px;
    }
}