﻿
.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px!important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

    .section-title:before {
        content: '';
        display: block;
        width: 90px;
        height: 4px;
        background: var(--blue);
        margin-bottom: 5px;
        text-align: center;
    }
/* Popular Searches Component */
.popular-searches {
    margin-bottom: 60px;
}

.cards-container {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.search-card {
    background: white;
    box-shadow: var(--main-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    flex: 1;
}

.card-content {
    padding: 16px 12px;
}

.search-text {
    font-size: 14px;
    font-weight: 500;
    color: #6D6E6F;
    display: block;
}

/* FAQ Accordion Component */


.accordion-container {
    display: flex;
    margin-top:20px;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    overflow: hidden;
    background: white;
    box-shadow: var(--main-shadow);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: var(--blue);
}

    .accordion-header:hover {
        background: #f1f3f4;
    }

    .accordion-header.active {
        border-bottom: 1px solid #e8e9ea;
    }

.accordion-title {
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}

.accordion-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--blue);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

    .accordion-content.active {
        max-height: 500px;
        padding: 20px 24px;
    }

    .accordion-content p {
        font-size: 14px;
        line-height: 1.6;
        color: var(--text-color);
        margin-bottom: 12px;
    }

        .accordion-content p:last-child {
            margin-bottom: 0;
        }

    .accordion-content strong {
        color: var(--dark-blue);
        font-weight: 600;
    }

/* Responsive Design */
@media (max-width: 768px) {

    .search-card {
        min-width: 35%;
        display: inline-flex;
        align-items: center;
    }
    .cards-container {
        display: flex;
        flex-wrap: unset;
        overflow:auto;
    }
        .cards-container::-webkit-scrollbar{
            height:0;
        }
}

