/* General Reset */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

/* Main Content */
main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Links */
a {
    color: #4a90e2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Headings */
h1, h2, h3 {
    margin-bottom: 1rem;
    color: #222;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 1.5rem;
}

/* Paragraphs */
p {
    margin-bottom: 1rem;
    text-align: justify;
}

/* Lists */
ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Buttons (Cookies Section) */
button {
    background-color: #4a90e2;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #3a78c2;
}

button.boton-rechazar {
    background-color: #999;
}

button.boton-rechazar:hover {
    background-color: #777;
}

/* Cookie Notification */
.aviso-cookies {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.aviso-cookies .titulo {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.aviso-cookies .parrafo {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.aviso-cookies .enlace-container {
    margin-top: 0.5rem;
}

.aviso-cookies .enlace {
    color: #4a90e2;
    font-size: 0.9rem;
}

.galleta {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}
