* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f9f9f9;
}


/* faq main section styles start */
.or-faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* faq title styles start */

.or-faq-title {
    text-align: center;
    max-width: 70%;
    margin: 0 auto;
}

.or-faq-title .faq-header {
    font-family: "Helvetica Neue";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 14px;
    color: #222;
}

.or-faq-title .para {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #6B6B6B;
}

/* faq title styles end */

/* faq accordion styles start */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.accordion__item {
    border: 1px solid #FFB6C1;
    border-radius: 10px;
    overflow: hidden;
    color: white;
}

.accordion__header {
    padding: 24px;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion__header .accordion-header-title {
    color: #111;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 164%;
}

.accordion__header .square{
    background: #222;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.accordion__header::after {
    content: '';
    background: url('../images/down-arrow.png') no-repeat center;
    width: 24px;
    height: 24px;
    transition: .4s;
    transform: rotateZ(-90deg);
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 39%;
    left: 95%;
    z-index: 1;
}

.accordion__header.active {
    background: #FFB6C1;
}

.accordion__header.active::after {
    transform: rotateX(0deg);
}

.accordion__item .accordion__content {
    max-height: 0;
    transition: .5s;
    overflow: hidden;
    background-color: #FFF8F9;
}

.accordion__content p {
    padding: 24px;
    color: #6B6B6B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

/* faq accordion styles end */

/* faq main section styles end */



/* Responsive Styles start */

/* Large Screens (Desktops) */
@media (max-width: 1279px) {
    .or-faq-container{
        margin-bottom: 80px;
    }

    .or-faq-title .faq-header {
        font-size: 32px;
    }
}


/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
    .or-faq-container {
        max-width: 80%;
        gap: 40px;
        margin-bottom: 60px;
    }

    .or-faq-title .faq-header {
        font-size: 28px;
    }

    .accordion__header {
        padding: 20px;
    }

    .accordion__header .accordion-header-title {
        font-size: 20px;
    }

    .accordion__content p {
        padding: 20px;
    }

    .accordion__header::after{
        width: 20px !important;
        height:20px !important;
    }
}

/* Small Screens (Mobile devices) */
@media (max-width: 768px) {
    .or-faq-container {
        max-width: 80%;
        gap: 30px;
        margin-bottom: 50px;
    }

    .or-faq-title {
        max-width: 100%;
    }

    .or-faq-title .faq-header {
        font-size: 24px !important;
        max-width: 100%;
    }

    .or-faq-title .para {
        font-size: 15px !important;
        max-width: 100%;
    }

    .accordion {
        gap: 20px;
    }

    .accordion__header {
        padding: 18px;
    }

    .accordion__header .accordion-header-title {
        font-size: 16px !important;
    }

    .accordion__header::after {
        width: 16px !important;
        height: 16px !important;
        left: 94% !important;
    }

    .accordion__header .square{
        background: #222;
        width: 4px;
        height: 4px;
        border-radius: 50%;
    }

    .accordion__content p {
        font-size: 14px;
        padding: 15px;
    }
}

@media (max-width: 500px) {
    .or-faq-container {
        width: 100%;
        margin-bottom: 40px;
    }

    .or-faq-title {
        max-width: 100%;
    }

    .or-faq-title .faq-header {
        font-size: 18px !important;
        line-height: 28px;
    }

    .or-faq-title .para {
        font-size: 14px !important;
    }

    .accordion__header {
        padding: 12px !important;
    }

    .accordion__header .accordion-header-title {
        font-size: 12px !important;
    }

    .accordion__header::after {
        width: 12px !important;
        height: 12px !important;
        left: 92% !important;
    }

    .accordion__content p {
        font-size: 10px;
        padding: 15px;
    }
}

/* Responsive Styles end */