/* Estilos para páginas legales */
.legal-content {
    padding: 80px 0;
    /*background-color: #f9f9f9;*/
}

.legal-content .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
    color: #333;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.legal-content .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #585858;
}

.legal-text {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    line-height: 1.6;
    color: #444;
}

.legal-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.legal-text h2 {
    font-size: 1.5rem;
    color: #444;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.legal-text ul li:before {
    content: "•";
    color: #004aad;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.legal-text a {
    color: #004aad;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: #e25525;
    text-decoration: underline;
}

.legal-text strong {
    font-weight: 600;
    color: #333;
}

/* Estilos para tabla de cookies */
.table-container {
    overflow-x: auto;
    margin-bottom: 30px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    text-align: left;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eaeaea;
}

.cookies-table th {
    background-color: #f7f7f7;
    font-weight: 600;
    color: #333;
}

.cookies-table tr:hover {
    background-color: #f9f9f9;
}

.cookies-table td:first-child {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 50px 0;
    }

    .legal-text {
        padding: 25px;
    }

    .legal-content .section-title {
        font-size: 2rem;
    }

    .legal-text h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 30px 0;
    }

    .legal-text {
        padding: 20px;
    }

    .legal-content .section-title {
        font-size: 1.8rem;
    }
}