body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    line-height: 1.6;
}

header {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 2rem 0;
}

h1 {
    font-size: 2.5rem;
    margin: 0;
}

.header-content {
    display: flex;
    align-items:center;
}

.logo {
    max-width: 120px; /* Ajusta este valor según el tamaño del logotipo */
    margin-right: 15px;
}

.title-wrapper {
    display: flex;
    flex-direction: column;
}

.dates {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: #212223;
}

/* Botones de Navegación */
.buttons-wrapper {
    text-align: center;
    margin: 2rem 0;
}

.tab-button {
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    padding: 10px 20px;
    font-size: medium;
    font-weight: bold;
    margin: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.tab-button:active, 
.tab-button.active {
    background-color: #007d00;
    color:#ecf0f1;
    border-color: #999;
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(2px);
}

.tab-button:hover {
    background-color: #0d980d;
}


.content-wrapper {
    display: none;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 2rem auto;
}

.content-wrapper.active {
    display: flex;
}

.box {
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 45%;
    margin-bottom: 2rem;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
}

h2 {
    color: #007d00;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

ul {
    padding-left: 1.5rem;
    list-style: disc;
    text-align: left;
}

ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.requirements h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin-top: 1.5rem;
}

.accordion-item {
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: #007d00;
    color: #ffffff;
    border: none;
    padding: 1rem;
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-button:hover {
    background-color: #34a934;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #ecf0f1;
    padding: 0 1rem;
    /* border-left: 2px solid #007d00; */
}

.accordion-content ul {
    padding: 1rem 0;
}

.accordion-content.open {
    max-height: 500px; /* Ajusta según la cantidad de contenido */
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* Permite que los elementos se envuelvan en dispositivos pequeños */
    padding: 20px;
    text-align: center; /* Centra el texto para dispositivos pequeños */
}

.header-content .logo {
    max-width: 100px; /* Ajusta el tamaño del logotipo */
    height: auto;
    margin-right: 20px;
    flex-shrink: 0; /* Evita que el logotipo se reduzca en dispositivos pequeños */
}

.header-content .title-wrapper {
    flex: 1; /* Hace que el contenedor del título ocupe el espacio disponible */
}

.header-content h1 {
    font-size: 1.5em;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column; /* Coloca el logotipo y el título en columna en pantallas pequeñas */
    }

    .header-content .logo {
        margin-bottom: 10px; /* Agrega espacio debajo del logotipo */
        margin-right: 0; /* Elimina el margen derecho */
    }

    .header-content h1 {
        font-size: 1.2em; /* Ajusta el tamaño del título para pantallas pequeñas */
    }

    .box {
        width: 100%;
    }

    .tab-button {
        display: block;
        margin: 1rem auto;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1em; /* Reduce el tamaño del título en dispositivos muy pequeños */
    }
}


