.faq-display-section {
    width: 70%;
    margin: 40px auto 0;
    font-family: 'Barlow', sans-serif;
    display: none;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0e1c36;
    text-align: center;
}

.faq-block {
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-header {
    background-color: #0066cc;
    color: #fff;
    font-size: 24px;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: background 0.3s ease;
    scroll-margin-top: 120px;
}

    .faq-header:hover {
        background-color: #005bb5;
    }

    .faq-header::after {
        content: "+";
        position: absolute;
        right: 22px;
        font-size: 24px;
        transition: 0.3s;
    }

    .faq-header.active::after {
        content: "-";
    }

.faq-content {
    display: none;
    padding: 22px;
    border: 1px solid #d0d0d0;
    border-top: none;
    background-color: #fff;
    font-size: 22px;
    color: #333;
    line-height: 1.8;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-page__single {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .services-page__single:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
