/* Legal Pages Styles */
.legal-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.legal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-updated {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 50px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
    text-align: justify;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.legal-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.legal-section ul li strong {
    color: var(--text-primary);
}

.legal-section a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-section a:hover {
    opacity: 0.8;
}

.contact-list {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 25px 30px;
    border: 1px solid var(--border-color);
}

.contact-list li::before {
    display: none;
}

.contact-list li {
    padding-left: 0;
    margin-bottom: 10px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.info-table tr {
    border-bottom: 1px solid var(--border-color);
}

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

.info-table td {
    padding: 15px 20px;
    font-size: 15px;
}

.info-table td:first-child {
    color: var(--text-muted);
    width: 40%;
    background: rgba(255, 255, 255, 0.02);
}

.info-table td:last-child {
    color: var(--text-primary);
}

.info-table a {
    color: var(--accent-primary);
    text-decoration: none;
}

.info-table a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page {
        padding-top: 100px;
    }

    .legal-section h2 {
        font-size: 18px;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 14px;
    }

    .info-table td {
        display: block;
        width: 100%;
        padding: 10px 15px;
    }

    .info-table td:first-child {
        padding-bottom: 5px;
        font-size: 13px;
    }

    .info-table td:last-child {
        padding-top: 0;
        padding-bottom: 15px;
    }

    .info-table tr {
        display: block;
    }

    .contact-list {
        padding: 20px;
    }
}
