/* :root {
    --primary-color: #4f46e5;
    --text-color: #1f2937;
    --bg-color: #f3f4f6;
} */

/* body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
} */

.terms-card {
    background: white;
    /* max-width: 700px; */
    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: #111827;
}

.intro {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 30px;
}

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

details[open] {
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.1);
}

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

summary::after {
    content: "+";
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.content {
    padding: 0 16px 16px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4b5563;
}

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

.footer-action {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-accept:hover {
    opacity: 0.9;
}

li {
    text-align: justify;
}

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




