.faq-page-section {
    position: relative;
    padding-bottom: 40px;
    background-color: var(--z-green-dark);
    min-height: 100vh;
    z-index: 10;
}

.faq-page-container {
    position: relative;
    z-index: 2;
}

.faq-header-row {
    margin-bottom: 60px;
}

.faq-breadcrumbs {
    margin-bottom: 40px;
}

.faq-title {
    margin: 20px 0;
}

.faq-description {
    font-size: 18px;
    color: rgba(253, 251, 237, 0.8);
    line-height: 1.6;
    margin: 0;
}

.faq-layout-row {
    row-gap: 40px;
    margin-bottom: 80px;
}

.faq-group {
    margin-bottom: 48px;
}

.faq-group:last-child {
    margin-bottom: 0;
}

.faq-group-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 24px 0;
    font-family: 'Benzin', sans-serif;
}

.faq-group-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 230, 0, 0.1);
    color: var(--z-yellow);
    border-radius: 12px;
}

.faq-group-icon svg {
    width: 32px;
    height: 32px;
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 16px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    list-style: none;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    user-select: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    padding-right: 24px;
    line-height: 1.4;
}

.faq-chevron {
    color: var(--z-yellow);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-item[open] {
    border-color: rgba(255, 230, 0, 0.3);
    background: rgba(20, 36, 23, 0.8);
}

.faq-answer {
    padding: 0 24px 24px 24px;
    font-size: 16px;
    color: rgba(253, 251, 237, 0.8);
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}

.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 130px;
}

.widget-support {
    text-align: center;
    padding: 40px 32px;
}

.support-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(255, 230, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.support-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.support-desc {
    font-size: 14px;
    color: rgba(253, 251, 237, 0.7);
    line-height: 1.5;
    margin: 0 0 24px 0;
}

.support-contacts {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(253, 251, 237, 0.1);
}

.support-phone {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--z-yellow);
    text-decoration: none;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.support-phone:hover {
    transform: scale(1.05);
}

.support-hours {
    font-size: 13px;
    color: rgba(253, 251, 237, 0.5);
}

.btn-support-telegram {
    width: 100%;
    justify-content: center;
    gap: 8px;
}

.faq-form-wrapper {
    padding: 48px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(20, 36, 23, 0.8) 0%, rgba(20, 36, 23, 0.4) 100%);
    border-color: rgba(255, 230, 0, 0.2);
}

.faq-form-text-col {
    padding-right: 40px;
}

.faq-form-title {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 900;
    color: #ffffff;
    font-family: 'Benzin', sans-serif;
    margin: 0 0 16px 0;
}

.faq-form-desc {
    font-size: 16px;
    color: rgba(253, 251, 237, 0.7);
    line-height: 1.6;
    margin: 0;
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(253, 251, 237, 0.8);
}

.form-input {
    width: 100%;
    background: rgba(253, 251, 237, 0.05);
    border: 1px solid rgba(253, 251, 237, 0.1);
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-input:focus {
    border-color: var(--z-yellow);
    background: rgba(253, 251, 237, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    align-self: flex-start;
    padding: 16px 32px;
    border: none;
}

@media (max-width: 1199.98px) {
    .faq-form-text-col { padding-right: calc(var(--bs-gutter-x) * .5); margin-bottom: 32px; text-align: center; }
    .form-submit-btn { align-self: center; width: 100%; justify-content: center; }
}

@media (max-width: 991.98px) {
    .faq-sidebar { position: static; }
}

@media (max-width: 768px) {
    .faq-page-section { padding: 100px 0 60px; }
    .faq-form-wrapper { padding: 32px 24px; border-radius: 24px; }
    .form-row { flex-direction: column; gap: 24px; }
    .faq-summary { font-size: 16px; padding: 20px; }
    .faq-answer { padding: 0 20px 20px 20px; }
}

.widget-cta {
    background: linear-gradient(145deg, var(--card-background) 0%, rgba(20, 36, 23, 0.6) 100%);
    border-color: rgba(255, 230, 0, 0.3);
    text-align: center;
    padding: 40px 32px;
}

.cta-widget-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--z-yellow);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.cta-widget-desc {
    font-size: 14px;
    color: rgba(253, 251, 237, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-sidebar-cta {
    width: 100%;
    justify-content: center;
}