.beps-product-faq {
display: flex;
flex-direction: column;
gap: 15px;
max-width: 764px;
width: 100%;
} .beps-faq__item {
background: #ffffff;
border-radius: 15px;
border: 1px solid #E8E8E8;
overflow: hidden;
transition: border-color 0.2s ease;
}
.beps-faq__item--open {
border-color: #130F32;
} .beps-faq__header {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
background: none;
border: none;
padding: 22px 24px;
cursor: pointer;
text-align: left;
gap: 16px;
outline: none;
}
.beps-faq__header:hover,
.beps-faq__header:focus {
background: none !important;
color: inherit !important;
box-shadow: none !important;
text-decoration: none !important;
}
.beps-faq__header:focus-visible {
outline: 2px solid #130F32;
outline-offset: -2px;
border-radius: 14px;
} .beps-faq__title {
font-size: 18px;
font-weight: 600;
color: #130F32;
line-height: 1.4;
flex: 1;
margin: 0;
} .beps-faq__icon {
font-size: 28px;
font-weight: 300;
color: #130F32;
line-height: 1;
flex-shrink: 0;
display: inline-flex;
align-items: center;
} .beps-faq__body {
padding: 0 24px 22px;
}
.beps-faq__body p,
.beps-faq__body {
font-size: 18px;
font-weight: 400;
color: #130F32;
line-height: 1.65;
margin: 0;
} @media (max-width: 767px) {
.beps-product-faq {
gap: 12px;
}
.beps-faq__header {
padding: 18px 20px;
}
.beps-faq__title {
font-size: 16px;
}
.beps-faq__body {
padding: 0 20px 18px;
font-size: 16px;
}
}