#bloc_hero_faq span#tag {
    background-color: #ffd816 !important;
    font-weight: 600 !important;
    color: black !important;
    padding: 5px 12px !important;
    border-radius: 4px !important;
}

#bloc_hero_faq h1 {
    font-family: "Inter", sans-serif;
    font-size: 3rem;
    font-weight: bold;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

#bloc_hero_faq p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 0;
    color: white;
    font-family: "Inter", sans-serif;
}
.faq-section {
	padding: 40px 20px;
	margin: 0 auto;
}

/* MAIN CARD (summary only) */
details {
	margin-bottom: 10px;
	position: relative;
}

details summary {
	background: white;
	border: 2px solid #e5e5e5;
	border-radius: 10px;
	padding: 18px 22px;
	font-weight: bold;
	font-family: "Inter", sans-serif;
	font-size: 1.2rem;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width: 900px) {
	details summary {
		font-size: 0.9rem;
	}
}

/* Remove default arrow */
details summary::-webkit-details-marker {
	display: none;
}

/* Custom chevron */
details summary::after {
	content: "›";
	font-size: 1.6rem;
	color: #ffd816;
	transform: rotate(90deg);
	transition: 0.3s ease;
}

details[open] summary::after {
	transform: rotate(-90deg);
}

/* ANSWER BOX (OUTSIDE the border) */
details p {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	margin: 0;
	padding: 0 22px;
	background: transparent;
	transition: max-height 0.35s ease, opacity 0.35s ease;
}

details{
	a{
		color: #006809;
		text-decoration: underline !important;

	}

}

/* When open, reveal content below card */
details[open] p, details[open] div {
	max-height: 500px;
	/* enough to show text */
	opacity: 1;
	padding-top: 12px;
	padding-bottom: 12px;
}
