/* Legal Pages Styles */

.legal-content {
    padding: 120px 0 80px;
    min-height: calc(100vh - 200px);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.last-updated {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

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

.legal-content h2 {
    font-size: 1.5rem;
    color: #334155;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
    display: inline-block;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: #475569;
    margin: 20px 0 10px;
}

.legal-content p {
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content strong {
    color: #334155;
}

/* Info Box - Developer Information */
.info-box {
    background: #f0f4ff;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    margin: 20px 0;
}

.info-box p {
    margin-bottom: 8px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box a {
    color: #667eea;
    font-weight: 500;
}

/* Contact Box */
.contact-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-box p {
    color: #fff;
    margin-bottom: 10px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box a {
    color: #fff;
    text-decoration: underline;
}

/* Data Deletion Page Specific */
.deletion-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.method {
    background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.method h3 {
    color: #667eea;
    margin-top: 0;
    margin-bottom: 20px;
}

.method ol, .method ul {
    margin-left: 20px;
}

.highlight-email {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px 0;
}

.highlight-email a {
    color: #667eea;
}

/* Timeline */
.timeline {
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item .time {
    background: #667eea;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 140px;
    text-align: center;
}

.timeline-item .action {
    margin-left: 20px;
    color: #475569;
    font-weight: 500;
}

/* Warning Box */
.warning-box {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
}

.warning-box ul {
    margin-bottom: 0;
}

.warning-box li {
    color: #92400e;
}

/* Active Link */
.nav-links a.active {
    color: #667eea;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }

    .deletion-methods {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .timeline-item .action {
        margin-left: 0;
    }
}
