.faq-icon-expand, .faq-icon-unexpand {
    cursor: pointer;
    transition: transform 0.2s;
    filter: opacity(0.8);
    aspect-ratio: 1/1;
}
.etiquette-icon {
    width: 40px;
}

.etiquette h2 {
    font-weight: 600;
}
.contactform-icon{
    width: 60px;
    height: 60px;
    aspect-ratio: 1/1;
    margin-bottom: 0;
}
.etiquette::before{
    content: '';
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background: linear-gradient(90deg, var(--orage_light_blue), var(--orage_dark_blue));
}
.etiquette a {
    width: 100%;
    height: 100%;
    word-break: break-word;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: inherit;
}

.faq-item:not(.faq-expand) .faq-icon-expand {
    visibility: visible;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    right: 0;
    top: 0;
    left: auto;
    position: absolute;
}

.faq-expand .faq-icon-expand {
    visibility: hidden;
}

.faq-item:not(.faq-expand) .faq-icon-unexpand {
    visibility: hidden;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    right: 0;
    top: 0;
    left: auto;
    position: absolute;
}

.faq-expand .faq-icon-unexpand {
    visibility: visible;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    right: 0;
    top: 0;
    left: auto;
    position: absolute;
}

.faq-item {
    margin: 0;
    padding: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    width: 85%;
    height: fit-content;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-container {
    gap: 0.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;

}

.faq-item:hover {
    background-color: #f0f0f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: scale(1.01);
}

.faq-item h2 {
    position: relative;
    padding-bottom: 0.5em;
    font-size: 1.5em;
    font-weight: 550;
}

.faq-item:not(.faq-expand) p {
    visibility: hidden;
    margin: 0;
    padding: 0;
    height: 0;
}

.faq-expand p {
    visibility: visible;
    margin: 0;
    padding: 0.5em 0;
    line-height: 1.5;
    font-size: 1.1rem;
    font-weight: 550;
    color: black;
}

.faq-header {
    position: relative;
    width: 100%;
    flex-direction: row;
    height: 70px;
    justify-content: center;
    overflow-wrap: break-word;
}

.faq-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: var(--orage_dark_blue);
    min-height: 3px;
    pointer-events: none;
}

.contactform {
    width: 100%;
    max-width: 600px;
    height: fit-content;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0.5em;
}
.contactform .contactform-header {
    font-size: 1.5em;
    font-weight: 600;
    color: black;
    text-align: center;
    margin: 0 0 0 0;
    position: relative;
}
.contactform .contactform-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: var(--orage_dark_blue);
    min-height: 3px;
    pointer-events: none;
}
#contact{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}
.form-rows {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
    border-radius: 8px;
    padding: 1em;
}
.form-rows{
    width: 100%;
    max-width: 800px;
    flex-wrap: wrap;
}
.form-rows .form-group {
    flex: 1;
    min-width: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.form-rows .form-group label {
    font-weight: 600;
    color: var(--orage_dark_blue);
}
.form-group input,
.form-group textarea {
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
}
.form-group textarea {
    resize: none;
    min-height: 100px;
    width: 80%;
}
