body {
    font-family: 'noto sans', sans-serif;
    font-size: 1.25rem;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 20px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    display: block;
    background-color: #3e8e41;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #2e7031;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ccc;
}

/* Estilo del banner de cookies */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  padding: 15px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0; /* Elimina cualquier margen no deseado */
}

/* Ajustes de estilo para el texto dentro del banner */
.cookie-banner p {
  margin: 0; /* Ajusta a 0 para eliminar espacios */
  font-size: 14px;
  color: #333;
}

/* Ajustes para el enlace en el texto */
.cookie-banner a {
  color: #007bff;
  text-decoration: none;
}

/* Contenedor de los botones */
.cookie-buttons {
  display: flex;
  gap: 10px;
}

/* Estilos de los botones */
.cookie-buttons button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

/* Estilo para el primer botón (Aceptar las obligatorias) */
.cookie-buttons button:first-child {
  background-color: #6c757d;
}

/* Efecto hover en los botones */
.cookie-buttons button:hover {
  background-color: #0056b3;
}

