body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* Barra superior */
.top-bar {
    background-color: #e60000; /* Rojo Claro */
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
}

/* Logo */
.logo-section {
    background-color: white;
    text-align: center;
    padding: 20px;
}

.logo-section img {
    max-width: 200px;
    height: auto;
}

/* Texto */
.text-section {
    background-color: white;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
}

.text-section h1 {
    color: #e60000;
    text-align: center;
}

.text-section p {
    text-align: justify;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 14px;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Adaptabilidad */
@media (max-width: 768px) {
    .text-section {
        margin: 10px;
        padding: 15px;
    }

    .logo-section img {
        max-width: 150px;
    }

    .top-bar {
        font-size: 16px;
    }
}
