body {
    line-height: 1.6;
    align-items: flex-start;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    width: 100%;
}

h1 {
    color: #2c3e50;
    margin-bottom: 2rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 1rem;
}

h2 {
    color: #34495e;
    margin-top: 2rem;
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
}

/* Estilos de la tabla de cookies */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.cookie-table th, .cookie-table td {
    border: 1px solid #e1e4e8;
    padding: 12px 15px;
    text-align: left;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

.btn-back {
    display: inline-block;
    margin-top: 2rem;
    padding: 10px 20px;
    background-color: #2980b9;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-back:hover {
    background-color: #3498db;
}

@media (max-width: 480px) {
    .policy-container {
        padding: 1rem;
    }

    body {
        background-size: cover;
    }
}