* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    padding-top: 80px;
}

header {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    height: 55px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #d32f2f;
    font-weight: bold;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    background: #fff;
}

.seccion-noticias {
    margin-bottom: 40px;
}

.seccion-noticias h2 {
    color: #d32f2f;
    border-bottom: 2px solid #d32f2f;
    margin-bottom: 10px;
}

.noticia {
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #fff;
    margin-top: 40px;
}

/* Responsivo */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .container {
        padding: 10px;
    }

    .logo {
        height: 40px;
    }
}
.leer-mas {
    display: inline-block;
    padding: 7px 14px;
    background-color: #A7B8E5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.leer-mas:hover {
    background-color: #155ec1;
}