.accordion {
    margin: 20px auto;
    width: 80%;
}

.accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 5px;
}

.accordion-header {
    background-color: #f1f1f1;
    padding: 10px;
    cursor: pointer;
    font-family: Obvia;
    font-style: normal;
    font-weight: normal;
}

.accordion-content {
    display: none;
    padding: 10px;
    font-size: 15px;
}

.accordion-item.active .accordion-content {
    display: block;
}

.destinations{
    display: flex;
    justify-content: unset;
    font-family: Obvia;
    font-style: normal;
    font-weight: normal;
}

.agenda{
    text-align: center;
}


.agenda em{
    font-style: normal;
    color: #ec6753;
    text-decoration: underline;
}
.agenda li{
    text-decoration: none;
}

.resourcesContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 80px;
}

li{
    list-style-type: none;
    text-align: start;
}

h2{
    text-align: center;
}

.contact form {
    max-width: 400px;
    margin: 0 auto;
}

.contact form h2 {
    color: #ec6753; 
}

.contact form label {
    display: block;
    margin-bottom: 8px;
    color: #ec6753; 
}

.contact form input,
.contact form textarea,
.contact form button {
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
    resize: none;
}

.contact form textarea {
    resize: vertical;
}

.contact form input[type="checkbox"] {
    margin-right: 8px;
}

.contact form button {
    background-color: #ec6753; 
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.contact form button:hover {
    background-color: #fd4124; 
}

.container{
    display: flex;
    justify-content: space-around;
}