* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}


/* Encabezado con fondo degradado */
header {
    background: linear-gradient(to bottom, #FF5A00, #ffffff);
    padding: 80px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    color: #333;
}

header img {
    max-width: 150px;
    display: block;
    margin: 0 auto;
}

/* Estilos para el main */
main {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

/* Título principal de la política de cookies */
main h1 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 1.5em;
    position: relative;
}

main h1::before, main h1::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: #ccc;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

main h1::before {
    left: 0;
}

main h1::after {
    right: 0;
}

/* Secciones de contenido */
main h2 {
    font-size: 1.5rem;
    color: #444;
    margin-top: 1.5em;
}

main p {
    line-height: 1.6;
    margin-bottom: 1em;
}

main ul {
    margin-left: 1em;
    padding-left: 1em;
    list-style-type: disc;
}

main ul li {
    margin-bottom: 0.5em;
}

main ul li strong {
    font-weight: bold;
}

/* Enlaces dentro del contenido */
main a {
    color: #007bff;
    text-decoration: none;
}

main a:hover {
    text-decoration: underline;
}

/* Líneas divisorias con icono central */
section {
    border-bottom: 1px solid #ccc;
    padding-bottom: 1em;
    margin-bottom: 1em;
    position: relative;
}

section::after {
    content: "🍪";
    font-size: 1.2rem;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 0 10px;
}
