body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #E93456;
    color: white;
    padding: 10px 0;
    text-align: center;
    width: 100%;
}
.header-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.header-nav a {
    cursor: pointer;
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 16px;
    border-radius: 5px;
}
.header-nav a:hover {
    background-color: #B32D44;
}

p{
    font-size: 20px;
    margin: 0;
    padding: 10px;
}

#img-alberti{
    width: 800px;
}

#section-index{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#section-index h1{
    font-size: 55px;
}

#section-index p{
    width: 70rem;
    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;
}

#article-flg{
    color: white;
}

footer {
    background-color: #E93456;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

footer .social-media a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
}

footer .social-media a:hover {
    color: #333;  
}

#img-cole{
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 50%;
}

#table-services{
    width: 70%;
    height: 800px;
    border-collapse: collapse; 
    margin-bottom: 5rem;
    background-color: #F0A2B7;
    
}

th, td {
    padding: 10px; 
    border: 1px solid #ccc; 
    text-align: center;
}

#banner-alberti{
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/*.-------------------------------------------*/

#contacto {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #F9F9F9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    margin-bottom: 5rem;
}

form {
    display: flex;
    flex-direction: column;
}

form div {
    margin-bottom: 15px;
}

label {
    font-size: 1.1em;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Para asegurarse de que el padding no afecte el ancho */
    background-color: #fff;
}

input[type="text"], input[type="email"] {
    height: 40px;
}

textarea {
    height: 150px;
    resize: none; /* Evita que el usuario cambie el tamaño del área de texto */
}

button {
    background-color: #E93456; /* Usando el color principal proporcionado */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #F0A2B7; /* Color más claro cuando se pasa el ratón */
}

button:focus {
    outline: none; /* Elimina el contorno al hacer clic */
}
