.faq-container {
    max-width: 1200px;
    font-family: 'Urbanist', sans-serif;
    z-index;1;
    margin-bottom:100px;
    margin-top:30px;
}
.faq-subtitle{
    text-align: center;
    font-size: 24px;
    font-weight:500;
    font-family: 'Acme';
    color: #cf171f;
}
.faq-title {
    text-align: center;
    font-size: 55px;
    font-weight: 900;
    margin-bottom: 80px;
    color: #363539;
}

.faq-search {
    text-align: center;
    margin-bottom: 50px;
    border-radius: 50px;
}

.faq-search input {
    width: 80%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 50px;
}

.faq-accordion {
    margin: 40px 0px 0px 0px;
    padding: 0px 50px 0px 50px;
}

.faq-item {
   /* border: 1px solid #ddd;*/
    border-radius: 50px;
    overflow: hidden;
    background: #46357a;
    color: #fff;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
    text-align: left;
   align-items: center;
}

.faq-question {
    padding: 15px 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    background: #46357a;
    display: flex;
    justify-content: space-between;
    color: #fff;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    transition: background 0.3s ease-in-out; 
   align-items: center;
   
}

.faq-toggle {
    font-size: 20px;
    color: #fff;
    transition: transform 0.3s ease;
    background: #8a83b8;
    padding: 10px;
    border-radius: 50%; /* Makes the background circular */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px; /* Set a fixed width and height to make it perfectly round */
    height: 40px;
    flex-shrink: 0; /* Prevent shrinking */
    margin-left: auto;
}


.faq-answer {
    padding: 30px;
    font-size: 16px;
    font-weight: 400;
    background: #302861;
    display: none;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    color: #fff;
    line-height: 2;
    letter-spacing: 0.5px; /* Adds space between letters */
    word-spacing: 3px;
    
}
.faq-number{
    padding-left: 15px;
    padding-right: 15px;
}
.faq-item[open] .faq-answer {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.faq-item[open] .faq-toggle {
    transform: rotate(180deg);
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .faq-container {
        padding: 10px;
    }
    .faq-subtitle {
        font-size: 32px;
    }
    .faq-title {
        font-size: 45px;
        margin-bottom: 30px;
    }
    .faq-search input {
        width: 90%;
        font-size: 20px;
        padding: 8px;
    }
   .faq-accordion {
        padding: 0 !important;
        margin: 0 !important;
    }
    .faq-question {
        font-size: 20px !important;
        padding: 10px !important;
        letter-spacing:1px;
    }
    .faq-answer {
        padding: 20px;
        font-size: 18px !important;
    }
    .faq-toggle {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .faq-number{
     	padding-right:10px !importantx;
}
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .faq-subtitle {
        font-size: 28px;
    }
    .faq-title {
        font-size: 35px;
        margin-bottom: 20px;
    }
    .faq-search input {
        width: 100%;
        font-size: 14px;
        padding: 8px;
    }
    .faq-accordion {
        padding: 0 10px;
    }
    .faq-question {
        font-size: 16px;
        padding: 10px 15px;
    }
    .faq-answer {
        padding: 15px;
        font-size: 14px;
    }
    .faq-toggle {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}


