/* styles.css */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #dcdcdc;
    background-color: #121212;
}

header {
    background-color: #1f1f1f;
    color: #bb86fc;
    padding: 1em 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2em;
}

nav a {
    color: #bb86fc;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

header h1 {
    margin: 0.5em 0 0 0;
    font-size: 2em;
}

section {
    padding: 3em 1em;
    margin: 2em auto;
    max-width: 900px;
    background-color: #1f1f1f;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

section h2 {
    color: #bb86fc;
    border-bottom: 2px solid #bb86fc;
    padding-bottom: 0.5em;
    font-size: 1.8em;
}

section p, section ul {
    margin: 1.5em 0;
    line-height: 1.6;
}

section img {
    display: block;
    width: 100%;
    height: auto;
    margin: 1.5em 0;
    border-radius: 10px;
}

#program ul {
    list-style-type: none;
    padding: 0;
}

#program li {
    margin-bottom: 2em;
}

#program h3 {
    margin: 0.5em 0;
    color: #dcdcdc;
    font-size: 1.5em;
}

#program a {
    color: #bb86fc;
    text-decoration: none;
    font-weight: bold;
}

#program a:hover {
    text-decoration: underline;
}

#interpretes .interprete {
    display: flex;
    align-items: center;
    margin-bottom: 2em;
}

#interpretes img {
    max-width: 150px;
    height: auto;
    border-radius: 50%;
    margin-right: 1em;
}

footer {
    background-color: #1f1f1f;
    color: #bb86fc;
    text-align: center;
    padding: 1em 0;
    font-size: 0.9em;
}

/* Responsiveness */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1em;
    }

    section {
        padding: 2em 1em;
    }

    section h2 {
        font-size: 1.5em;
    }

    #program h3 {
        font-size: 1.3em;
    }

    #interpretes .interprete {
        flex-direction: column;
        text-align:
