#faq {
    margin-top: 90px;
    min-height: calc(100% - 90px);
    overflow: auto;
    position: static;
}

#faq .container {
    display: block;
    height: auto;
    min-height: 100%;
}

#faq .seo-faq {
    box-sizing: border-box;
    color: #525253;
    margin: 0 auto;
    padding: 70px 28px 40px;
    width: 88%;
}

#faq .seo-faq h1,
#faq .seo-faq>h2 {
    color: #96181B;
    font-family: Roboto, Arial, sans-serif;
    margin: 0 0 18px;
    text-align: center;
}

#faq .seo-faq h1 {
    font-size: 34px;
}

#faq .faq-intro {
    line-height: 1.62;
    margin: 0 auto 34px;
    max-width: 760px;
    text-align: center;
}

#faq .faq-grid {
    align-items: stretch;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

#faq .faq-column {
    align-content: start;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#faq .faq-grid article {
    background: #ffffff;
    border: 1px solid rgba(150, 24, 27, 0.12);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(39, 45, 52, 0.08);
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    padding: 20px;
    width: 100%;
}

#faq .faq-item details {
    height: 100%;
}

#faq .faq-item summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    list-style: none;
}

#faq .faq-item summary::-webkit-details-marker {
    display: none;
}

#faq .faq-item summary::after {
    background: rgba(141, 23, 26, 0.08);
    border: 1px solid rgba(141, 23, 26, 0.22);
    border-radius: 8px;
    color: #8d171a;
    content: "\203A";
    display: inline-flex;
    flex: 0 0 32px;
    font-size: 26px;
    font-weight: 300;
    height: 32px;
    justify-content: center;
    line-height: 1;
    transform: rotate(90deg);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    width: 32px;
}

#faq .faq-item details[open] summary::after {
    background: #8d171a;
    border-color: #8d171a;
    color: white;
    transform: rotate(-90deg);
}

#faq .faq-grid h2 {
    color: #96181B;
    font-size: 18px;
    font-weight: 650;
    margin: 0;
    text-align: left;
}

#faq .faq-answer {
    margin-top: 14px;
}

#faq .faq-grid p {
    line-height: 1.58;
    margin: 0;
}

#faq .faq-grid p+p {
    margin-top: 12px;
}

#faq .faq-answer a {
    color: #96181B;
    font-weight: 600;
}

#faq .faq-comparison {
    margin-top: 42px;
}

#faq .faq-comparison h2 {
    color: #96181B;
    font-family: Roboto, Arial, sans-serif;
    margin-bottom: 20px;
    text-align: center;
}

#faq .comparison-table-wrapper {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(150, 24, 27, 0.12);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(39, 45, 52, 0.1);
    overflow-x: auto;
}

#faq .comparison-table {
    background: transparent;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    width: 100%;
}

#faq .comparison-table th,
#faq .comparison-table td {
    border-bottom: 1px solid rgba(109, 116, 124, 0.16);
    line-height: 1.5;
    padding: 18px;
    text-align: left;
}

#faq .comparison-table th {
    background: #8d171a;
    color: white;
    font-weight: 650;
}

#faq .comparison-table th:first-child {
    border-top-left-radius: 8px;
}

#faq .comparison-table th:last-child {
    border-top-right-radius: 8px;
}

#faq .comparison-table th:first-child,
#faq .comparison-table td:first-child {
    width: 22%;
}

#faq .comparison-table td:first-child {
    background: rgba(150, 24, 27, 0.04);
    color: #343638;
    font-weight: 650;
}

#faq .comparison-table tr:last-child td {
    border-bottom: 0;
}

@media (max-width: 900px) {
    #faq .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    #faq .seo-faq {
        padding: 44px 18px 28px;
        width: 100%;
    }
    #faq .seo-faq h1 {
        font-size: 28px;
    }
    #faq .comparison-table,
    #faq .comparison-table thead,
    #faq .comparison-table tbody,
    #faq .comparison-table tr,
    #faq .comparison-table td {
        display: block;
        width: 100%;
    }
    #faq .comparison-table thead {
        display: none;
    }
    #faq .comparison-table tbody tr {
        border-bottom: 1px solid rgba(109, 116, 124, 0.16);
        padding: 12px 0;
    }
    #faq .comparison-table td {
        border-bottom: 0;
        box-sizing: border-box;
        padding: 10px 16px;
    }
    #faq .comparison-table td:first-child {
        background: rgba(150, 24, 27, 0.07);
        width: 100%;
    }
    #faq .comparison-table td[data-label]::before {
        color: #96181B;
        content: attr(data-label) " : ";
        display: block;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 4px;
        text-transform: uppercase;
    }
}
