/* General Styles */
body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4; /* Light grey background */
    color: #333; /* Darker text for readability */
    line-height: 1.6;
}

header {
    display: flex;
    align-items: center;
    background: #333;
    color: #fff;
    padding: 20px 0;
    justify-content: center;
    position: relative;
}


.logo-container {
    display: flex;
    align-items: center;
    position: absolute;
    left: 20px;
}

.logo {
    max-width: 50px; /* Ajusta el tamaño según tus necesidades */
    height: auto;
    margin-right: 10px; /* Espacio entre el logotipo y el texto */
}

.logo-text {
    font-size: 1.5rem;
    color: #fff;
}


header img.logo {
    top: 0.3em;
    position: absolute;
    left: 20px; /* Ajusta la distancia desde el borde izquierdo */
    max-width: 85px; /* Cambia según el tamaño deseado */
    height: auto;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    flex-grow: 1; /* Permite que el texto crezca para ocupar el espacio restante */
    text-align: center; /* Asegura que el texto esté centrado */
}

/* Section Styles */
section {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px; /* Center content and limit width */
    background: #fff;
    border-radius: 10px; /* Rounded corners for a modern look */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
    border-bottom: 2px solid #f4b400; /* Accent color under header */
    padding-bottom: 5px;
}

section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

/* List Styles */
section ul {
    list-style-type: none;
    padding: 0;
}

section ul li {
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid #ddd; /* Light separator between items */
    color: #555;
}

section ul li:last-child {
    border-bottom: none;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 1rem;
}
