/* styles.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}
header {
    background: #bc4e24; /* El color predominante de la paleta */
    color: white;
    padding-top: 10px;
    min-height: 70px;
    border-bottom: white 1px solid;
}
header a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}
header ul {
    padding: 0;
    list-style: none;
}
header li {
    display: inline;
    margin: 0 20px;
}
header #branding {
    float: left;
}
header #branding img {
    height: 100px; /* Ajusta esto según el tamaño de tu logo */
}
header nav {
    float: right;
    margin-top: 10px;
}
header .highlight, header .current a {
    color: #d89955; /* Un color secundario de la paleta */
    font-weight: bold;
}
header a:hover {
    color: white;
    font-weight: bold;
}
section {
    padding: 20px 0;
}
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

