.faq {
    position: relative;
    margin-top: 100px;
    margin-bottom: 120px;
}

.faq-title {
    margin-bottom: 40px;

    font-size: clamp(34px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-align: center;

    color: #111827;
}

.faq-item {
    position: relative;
    margin-bottom: 18px;
    border: 1px solid rgba(218, 218, 218, 0.9);
    border-radius: 24px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.96) 0%,
            rgba(248,250,252,0.98) 100%
        );
    overflow: hidden;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(0, 183, 255, 0.05),
            rgba(255, 59, 59, 0.04),
            transparent 70%
        );
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 59, 59, 0.16);
    box-shadow:
        0 10px 35px rgba(15, 23, 42, 0.06),
        0 2px 10px rgba(255, 59, 59, 0.05);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item[open] {
    border-color: rgba(255, 59, 59, 0.2);
    box-shadow:
        0 16px 40px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(255, 59, 59, 0.04);
}

.faq-item[open]::before {
    opacity: 1;
}

.faq-question {
    position: relative;
    padding: 26px 76px 26px 30px;
    cursor: pointer;
    list-style: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    color: #111827;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    content: "";
}

.faq-question::after {
    content: "";
    position: absolute;
    right: 28px;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background-image: url("/assets/images/icons/arrow-down.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.75;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.faq-item:hover .faq-question::after {
    opacity: 1;
}

.faq-item[open] .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
    opacity: 1;
}

.faq-answer {
    padding: 0 30px 30px;
}

.faq-text {
    font-size: 16px;
    line-height: 1.6;
    color: #2d2d2e;
}

.faq-text strong {
    color: #111827;
}

.faq-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.faq-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.75;
    color: #4b5563;
}

.faq-list li:last-child {
    margin-bottom: 0;
}

.faq-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #ff0000;
    box-shadow:
        0 0 0 5px rgba(255, 59, 59, 0.1);
}

/*@media (max-width: 768px) {*/
/*    .faq {*/
/*        margin-top: 80px;*/
/*        margin-bottom: 90px;*/
/*    }*/

/*    .faq-title {*/
/*        margin-bottom: 28px;*/
/*        font-size: 30px;*/
/*    }*/

/*    .faq-item {*/
/*        border-radius: 20px;*/
/*        margin-bottom: 14px;*/
/*    }*/

/*    .faq-question {*/
/*        padding: 22px 64px 22px 22px;*/

/*        font-size: 17px;*/
/*        line-height: 1.5;*/
/*    }*/

/*    .faq-question::after {*/
/*        right: 22px;*/

/*        width: 20px;*/
/*        height: 20px;*/
/*    }*/

/*    .faq-answer {*/
/*        padding: 0 22px 24px;*/
/*    }*/

/*    .faq-text,*/
/*    .faq-list li {*/
/*        font-size: 15px;*/
/*        line-height: 1.75;*/
/*    }*/
/*}*/


