html {
scroll-padding-top: 80px;
}
@media (max-width: 768px) {
html {
scroll-padding-top: 64px;
}
} .btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 14px;
padding: 18px 36px;
border-radius: 10px;
border: 3px solid;
font-family: 'Open Sans', sans-serif;
font-weight: 800;
font-size: 18px;
letter-spacing: 0.04em;
text-transform: uppercase;
text-decoration: none;
white-space: nowrap;
background: transparent;
box-sizing: border-box;
position: relative;
overflow: hidden;
transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.btn svg {
width: 28px;
height: 28px;
flex-shrink: 0;
transition: fill 0.3s ease, transform 0.3s ease;
}
.btn:hover svg {
transform: scale(1.15);
} .btn-outline {
color: #F04923;
border-color: #F04923;
}
.btn-outline svg { fill: #F04923; }
.btn-outline:hover {
background: #F04923;
color: #FDFDFD;
box-shadow: 0 6px 24px rgba(240, 73, 35, 0.35);
}
.btn-outline:hover svg { fill: #FDFDFD; } .btn-solid {
background: #F04923;
color: #FDFDFD;
border-color: #F04923;
box-shadow: 0 4px 14px rgba(240, 73, 35, 0.25);
}
.btn-solid svg { fill: #FDFDFD; }
.btn-solid:hover {
background: #d93d1a;
border-color: #d93d1a;
box-shadow: 0 8px 28px rgba(240, 73, 35, 0.45);
color: #FDFDFD;
}
.btn-solid:hover svg { fill: #FDFDFD; } .btn-on-dark {
color: #FDFDFD;
border-color: #FDFDFD;
}
.btn-on-dark svg { fill: #FDFDFD; }
.btn-on-dark:hover {
background: #FDFDFD;
color: #F04923;
box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}
.btn-on-dark:hover svg { fill: #F04923; } @media (max-width: 768px) {
.btn {
display: flex;
width: 100%;
font-size: 15px;
padding: 14px 22px;
gap: 10px;
white-space: normal;
text-align: center;
}
.btn svg {
width: 22px;
height: 22px;
}
} .sq-faq-trigger h3,
.sq-faq .sq-faq-body p {
font-family: 'Open Sans', sans-serif;
}
.sq-faq {
width: 100%;
display: flex;
flex-direction: column;
gap: 16px;
}
.sq-faq .sq-faq-item {
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
background-color: #FDFDFD;
overflow: hidden;
transition: all 0.3s ease;
}
.sq-faq .sq-faq-item:hover {
border-color: rgba(255, 255, 255, 0.2);
}
.sq-faq .sq-faq-trigger {
appearance: none;
-webkit-appearance: none;
background: #F2F2F2;
border: none;
outline: none;
box-shadow: none;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 1.5rem;
cursor: pointer;
text-align: left;
transition: color 0.3s ease;
}
.sq-faq .sq-faq-trigger:focus-visible {
outline: 2px solid #e2001a;
outline-offset: -4px;
border-radius: 12px;
}
.sq-faq-trigger h3 {
margin: 0;
font-size: 16px;
font-weight: 700;
line-height: 1.4;
color: #3D3D3D;
text-transform: uppercase;
letter-spacing: 0.01em;
transition: color 0.2s ease;
white-space: normal;
word-break: break-word;
flex: 1;
}
.sq-faq .sq-faq-trigger:hover h3 {
color: #F04923;
}
.sq-faq .sq-faq-icon-box {
width: 32px;
height: 32px;
min-width: 32px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.sq-faq .sq-faq-icon {
font-size: 16px;
line-height: 1;
font-style: normal;
font-weight: 400;
color: #3D3D3D;
}
.sq-faq .sq-faq-body {
background-color: #F2F2F2;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-in-out;
}
.sq-faq .sq-faq-body p {
margin: 0;
padding: 0 1.5rem 1.5rem 1.5rem;
font-size: 15px;
line-height: 1.7;
color: #3D3D3D;
font-weight: 500;
}
.sq-faq .sq-faq-item.open {
border-color: #F04923;
}
.sq-faq .sq-faq-item.open h3 {
color: #F04923;
}
@media (max-width: 767px) {
.sq-faq .sq-faq-trigger { padding: 1.25rem; }
.sq-faq .sq-faq-trigger h3 { font-size: 15px; }
.sq-faq .sq-faq-body p { font-size: 14px; padding: 0 1.25rem 1.25rem 1.25rem; }
}