:root {
    --primary-blue: #0056b3;
    --hover-blue: #003d7a;
    --bg-color: #f4f8fb;
    --text-main: #1e293b;
    --text-muted: #475569;
    --border-color: #e2e8f0;
}
/* 
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    margin: 0;
} */

.privacy-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    width: 100%;
    padding: 3rem 20rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Estilo del Acordeón */
details {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

details[open] {
    border-color: var(--primary-blue);
    background-color: #f8fbff;
}

summary {
    padding: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #334155;
}

summary::after {
    content: "+";
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: bold;
}

details[open] summary {
    color: var(--primary-blue);
    border-bottom: 1px solid #e2e8f0;
}

details[open] summary::after {
    content: "−";
}

.content {
    padding: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.content ul {
    padding-left: 20px;
}

.content p {
    margin-bottom: 1rem;
}

.footer-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

p {
    text-align: justify;
}

.title-display {
    font-size: 38px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
    text-align: center;
}