* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

body {
    font-family: "Century Gothic", sans-serif;
    background-color: #f4f4f4;
}

header {
    background-color: #0C436A;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
}

header .logo {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    height: 50px;
}

main {
    flex: 1;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.accordion {
    background-color: #006F97;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    font-family: "Century Gothic", sans-serif;
    border: none;
    outline: none;
    transition: background-color 0.2s ease;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 19px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    color: white;
    margin-left: 10px;
}

/* Cuando el acordeón está activo, rota la flecha */
.accordion.active .arrow {
    transform: rotate(180deg);
}

.accordion:hover {
    background-color: #2c3e50;
}

.panel {
    padding: 0 18px;
    background-color: #ecf0f1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-radius: 0 0 5px 5px;
    color: white;
}

.panel p {
    margin: 15px 0;
    color: black;
    font-family: "Century Gothic", sans-serif;
    text-align: justify;
}

.panel li {
    margin: 15px 0;
    color: black;
    font-family: "Century Gothic", sans-serif;
    text-align: justify;
}

@media (max-width: 600px) {
    header {
        font-size: 18px;
        padding: 15px;
    }

    .accordion {
        font-size: 16px;
        padding: 14px;
    }

    .panel p {
        font-size: 14px;
    }
}

footer {
    background-color: #0C436A;
    color: white;
    text-align: left;
    font-family: "Century Gothic", sans-serif;
    padding: 5px 0;
    font-size: 15px;
}

.search-container {
    text-align: center;
    margin: 20px 0;
}

#searchInput {
    width: 80%;
    max-width: 500px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}