/* Estilos Generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    background-color: #f0f0f0;
    padding: 50px 20px;
    text-align: center;
}

.hero h1 {
    color: #003366;
    font-size: 2.5em;
}

.hero p {
    color: #666;
    font-size: 2.8em;
}

/* Noticias Section */
.noticias {
    padding: 20px;
}

.noticias h2 {
    color: #003366;
    text-align: center;
}

.noticia {
    background-color: white;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.noticia h3 {
    color: #003366;
}

.noticia p {
    color: #666;
}

/* Pie de Página */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* Diseño Responsive General */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }
}