@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Inter Regular'), local('Inter-Regular'), url(https://fonts.gstatic.com/s/inter/v2/...) format('woff2');
}
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Poppins Regular'), local('Poppins-Regular'), url(https://fonts.gstatic.com/s/poppins/v2/...) format('woff2');
}
.faq-box {
margin-top: 40px;
padding: 20px;
border-top: 2px solid #e0e0e0;
}
.faq-question {
display: block;
width: 100%;
text-align: left;
background: #FFFFFF;
padding: 12px 15px;
font-weight: bold;
cursor: pointer;
border: none;
outline: none;
transition: background 0.3s;
color: #336F90; }
.faq-question:hover {
background: #eaeaea;
}
.faq-answer {
padding: 10px 15px;
background: #fff;
border: 2px solid #EB9601;
margin-bottom: 15px;
border-radius: 4px;
}