.faqs a {
    text-decoration: none;
}

.faqs p {
    margin: 0;
}

.faqs {
    max-width: 1222px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.breadcrumb {
    font-size: 12px;
}

.faqs .title {
    font-size: 30px;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    margin: 48px 0 24px;
}

.faqs .title p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: none;
}

.faqs .card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.faqs .card-grid a {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9f9f9;
    padding: 40px 0;
}

.faqs .card-grid a:hover span {
    text-decoration: underline;
}

.faqs .card-grid a img {
    width: 64px;
}

.faqs .card-grid a span {
    line-height: 1.6;
}

.faqs .service-pair {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.faqs .service-item {
    background-color: #f9f9f9;
}

.faqs .service-item-box {
    display: flex;
    flex-direction: column;
    margin: 32px 20px 20px;
}

.faqs .service-item-box span {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.faqs .service-item-box p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.faqs .service-item-box a {
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    font-size: 12px;
    text-transform: uppercase;
}

.faqs .service-item-box a:hover {
    text-decoration: underline;
}

.faqs .service-item-box img {
    width: 13px;
}

.faqs .tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.faqs .tabs .tab-item {
    text-align: center;
    padding: 12px 0;
    line-height: 24px;
    font-size: 14px;
    background-color: #f9f9f9;
    border: 1px solid transparent;
}

.faqs .tabs .tab-item.active,
.faqs .tabs .tab-item:hover {
    border-color: #222;
    background-color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.faqs .tab-content {
    display: none;
}

.faqs .tab-content h3 {
    display: none;
}

.faqs .tab-content.active {
    display: block;
}

.faqs .accordion .accordion-item {
    overflow: hidden;
    background-color: #fff;
    padding: 0 16px 23px 0;
    cursor: pointer;
    border-bottom: 1px solid #f4f4f4;
}

.faqs .accordion .accordion-item:first-child {
    border-top: 1px solid #f4f4f4;
    margin-top: 32px;
}

.faqs .accordion .accordion-item .accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Urbanist;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    transition: all 0.3s ease-out;
    padding-top: 23px;
}

.faqs .accordion .accordion-item .accordion-button .icon-btn {
    width: 20px;
    transition: all 0.2s ease-out;
}

.faqs .accordion .accordion-item .accordion-content {
    overflow: hidden;
    background-color: #fff;
    transition: all 0.3s ease-out;
    max-height: 0;
}

.faqs .accordion .accordion-item .accordion-content p {
    font-family: Urbanist;
    font-weight: 400;
    font-size: 12px;
    color: #222;
    margin-bottom: 8px;
}

.faqs .accordion .accordion-item .accordion-content p:last-child {
    margin: 0;
}

.faqs .accordion-item.active .accordion-content {
    max-height: 500px;
}

.faqs .accordion .accordion-item .accordion-content p.blod {
    font-weight: 600;
}

.faqs .accordion-item.active .accordion-button {
    padding: 20px 0 16px;
    font-weight: 600;
}

.faqs .accordion-item.active .accordion-button .icon-btn {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .faqs {
        padding: 24px 10px 32px;
    }

    .faqs .title {
        font-size: 24px;
        margin: 32px 0 16px;
    }

    .faqs .title p {
        margin-top: 6px;
        line-height: 21px;
    }

    .faqs .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faqs .card-grid a {
        padding: 25px 10px;
    }

    .faqs .card-grid a img {
        width: 50px;
    }

    .faqs .card-grid a span {
        font-size: 13px;
        text-align: center;
    }

    .faqs .service-pair {
        margin-top: 16px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faqs .service-item-box {
        margin: 20px 16px;
    }

    .faqs .service-item-box span {
        font-size: 18px;
    }

    .faqs .service-item-box p,
    .faqs .service-item-box a {
        font-size: 13px;
    }

    .faqs .service-item-box br {
        display: none;
    }

    .faqs .tabs {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .faqs .tabs .tab-item {
        width: 100%;
        padding: 18px 0;
        background: #fff;
        color: #222;
        border-color: #e8e8e8;
    }

    .faqs .tabs .tab-item.active {
        color: #fff;
        background-color: #000;
    }

    .faqs .tabs .tab-item.active,
    .faqs .tabs .tab-item:hover {
        font-weight: bold;
    }

    .faqs .footer .title {
        font-size: 18px;
        margin: 40px 0 16px;
    }

    .faqs .tab-content {
        padding-top: 32px;
    }

    .faqs .tab-content h3 {
        display: block;
        font-family: Urbanist;
        font-weight: bold;
        font-size: 16px;
        line-height: 38px;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: -16px;
    }

    .faqs .accordion .accordion-item {
        border: 1px solid #f4f4f4;
        margin-top: 12px;
        padding: 0 12px 16px;
    }

    .faqs .accordion .accordion-item .accordion-button {
        font-size: 14px;
    }

    .faqs .accordion .accordion-item .accordion-button .icon-btn {
        width: 15px;
    }

    .faqs .accordion .accordion-item .accordion-content p {
        font-size: 13px;
    }
}