/* Common Legal Page Styles */
.legal-section {
    padding: 120px 20px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-section h1 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-section .last-updated {
    margin-bottom: 40px;
    color: #666;
    font-style: italic;
}

.legal-section h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--text-dark);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-section h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.legal-section ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-section a {
    color: var(--accent-red);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Terms Specific */
.summary-box {
    background-color: var(--bg-light);
    border: 1px solid #eee;
    border-left: 5px solid var(--primary-yellow);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.summary-box h2 {
    margin-top: 0;
    border-bottom: none;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.summary-box ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
}

.summary-box li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.summary-box li::before {
    content: "✓";
    color: var(--accent-red);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1em;
}

/* Cookie Specific */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.cookie-table th, .cookie-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

/* Responsive table */
@media (max-width: 600px) {
    .cookie-table, .cookie-table thead, .cookie-table tbody, .cookie-table th, .cookie-table td, .cookie-table tr {
        display: block;
    }
    .cookie-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .cookie-table tr {
        margin-bottom: 15px;
        border: 1px solid #ccc;
    }
    .cookie-table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }
    .cookie-table td:before {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        content: attr(data-label);
        font-weight: bold;
    }
}

/* Delete Account Specific */
.warning-box {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: bold;
}