
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #c3d8ea;
    color: #236bad;
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Estilos específicos para los enlaces del menú */
nav a:hover,
nav a:active,
nav a:focus {
    color: #ffd700; /* Cambia este color según tus preferencias */
}

section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

h1 {
    margin: 0;
}

h2 {
    color:#236bad;
}

ul {
    list-style: none;
}

ul li {
    color: rgb(1, 168, 90);
    margin-bottom: 10px;
    
}

a:hover {
    text-decoration: underline;
}
.contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
}

.contact-button {
    background-color: rgb(1, 59, 168);
    color: #fff;
    border: none;
    padding: 20px;
    margin-top: 20px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #555;
}
```

