body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
}

header {
    background-color: #c0392b; /* Un color que puede evocar urgencia o importancia */
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

#site-logo {
    max-width: 200px; /* Ajusta según el tamaño de tu logo */
    height: auto;
    margin-bottom: 10px;
}

#site-title {
    margin: 0;
    font-size: 2.5em;
}

#slogan {
    margin-top: 5px;
    font-size: 1.2em;
}

.large-text {
    font-size: 1.8em; /* Letra grande para el eslogan */
    font-weight: bold;
}

nav {
    background-color: #e74c3c; /* Un color complementario */
    color: #fff;
}

nav ul {
    padding: 0;
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    display: block;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #dcdcdc;
}

nav ul li a.active {
    border-bottom: 2px solid #fff;
    font-weight: bold;
}

main {
    padding: 20px 0;
}

.tab-content {
    display: none; /* Oculta todas las pestañas por defecto */
    padding: 20px 0;
}

.tab-content.active {
    display: block; /* Muestra solo la pestaña activa */
}

.vision-mision {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.vision, .mision {
    width: 45%;
    padding: 15px;
    background-color: #fff;
    border-left: 4px solid #c0392b;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.vision h3, .mision h3 {
    color: #c0392b;
    margin-top: 0;
}

.investigation-item {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.investigation-item h3 {
    margin-top: 0;
    color: #e74c3c;
}

.investigation-item a {
    display: inline-block;
    margin-top: 10px;
    color: #c0392b;
    text-decoration: none;
    font-weight: bold;
}

.investigation-item a:hover {
    text-decoration: underline;
}

.contact-email {
    font-size: 1.2em;
    font-weight: bold;
    color: #c0392b;
}


footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}