:root {
    --color-text-main: #000000;
    --color-text-body: #1a1a1a;
    --color-border: #eaeaea;
    --font-main: 'Arial', sans-serif; /* A remplacer par ta police */
}

.block-faq {
    width: 100%;
padding: 80px;
background: #FFFFFF;
}

.faq__container {
    max-width: 1120px;
    margin: 0 auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 0px;
gap: 32px;
}

/* --- Header Section --- */
.faq__header {

display: flex;
flex-direction: column;
align-items: flex-start;
padding: 0px;
gap: 24px;

width: 1120px;

}

.faq__title {
width: 768px
font-family: 'Ubuntu';
font-style: normal;
font-weight: 700;
font-size: 32px;
line-height: 37px;
color: #000000;
margin: 0;
}

.faq__desc {
width: 768px;
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 19px;
color: #000000;
    margin: 0;
}

/* --- Liste FAQ (Accordéon natif) --- */
.faq__list {
    border-top: 1px solid #F2F2EE;
}

.faq__item {
    border-bottom: 1px solid #F2F2EE;
}

/* Retire la flèche native des anciens navigateurs */
.faq__item > summary {
    list-style: none; 
}
.faq__item > summary::-webkit-details-marker {
    display: none;
}

.faq__summary {
display: flex;
flex-direction: row;
align-items: center;
padding: 10px 0px;
gap: 24px;
width: 1120px;
height: 46px;
font-family: 'Open Sans';
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 19px;
color: #000000;
}

.faq__question-text
{
	width:90% !important;
}
/* --- Animation du chevron --- */
.faq__icon {
    flex-shrink: 0;
    margin-left: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq__icon svg {
    transition: transform 0.3s ease;
}

/* Quand le panel est ouvert, le chevron pointe vers le haut */
.faq__item[open] .faq__icon svg {
    transform: rotate(180deg);
}

/* --- Contenu de la réponse --- */
.faq__answer {
    padding-bottom: 25px;
width: 890px;
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 19px;
color: #000000;
}

.faq__answer-inner p:first-child {
    margin-top: 0;
}
.faq__answer-inner p:last-child {
    margin-bottom: 0;
}

/* --- Footer Section (Contact) --- */
.faq__footer {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 19px;
color: #000000;
}

.faq__footer-title {
width: 1120px;
font-family: 'Ubuntu';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 28px;
color: #000000;
    margin: 0 0 16px 0;
}

.faq__footer-desc {
width: 1120px;
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 19px;
color: #000000;
    margin: 0 0 24px 0;
}

/* --- Bouton Outline --- */
.btn-outline {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 20px 40px;
gap: 10px;
width: 135px;
height: 55px;
background: #FFFFFF;
border: 1px solid #111111;
font-family: 'Open Sans';
font-style: normal;
font-weight: 700;
font-size: 11px;
line-height: 15px;
letter-spacing: 0.42px;
text-transform: uppercase;
color: #111111;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--color-text-main);
    color: #ffffff;
}
@media (max-width: 50em) {
.faq__header,
.faq__summary,
.faq__footer-title,
.faq__footer-desc,
.faq__answer,
.faq__desc {
   width: 100%;
}
.block-faq {
padding: 60px 24px;
}
.faq__title{
font-size: 24px;
line-height: 28px;

}
}

