/* General Reset and Typography */
        /* * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        } */

        /* body {
            background-color: #ffffff;
            display: flex;
            justify-content: center;
            padding-top: 80px;
            color: #111;
        } */

        /* Container Styling */
        .faq-container {
            width: 100%;
            max-width: 800px;
            padding: 0 20px;
            margin: 0 auto;
            margin-top: 3rem;
            margin-bottom: 3rem;
        }

        /* Header Styling */
        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-label {
            text-transform: uppercase;
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 0.5px;
            color: rgb(85, 85, 85);
            margin-bottom: 15px;
            display: block;
        }

        .faq-title {
            font-size: 50px;
            font-weight: 500;
            color: #000;
        }

        /* FAQ Item Styling */
        .faq-item {
            border-bottom: 1px solid #e1e1e1;
        }

        /* .faq-item:first-child {
            border-top: 1px solid #e5e5e5;
        } */

        /* Question Button */
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 24px 0;
            text-align: left;
            font-size: 20px;
            font-weight: 500;
            color: #000;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.2s;
        }

        /* Icon Styling */
        .icon-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 32px;
            height: 32px;
            background-color: #f4f4f4;
            border-radius: 6px;
            flex-shrink: 0;
            margin-left: 16px;
            position: relative;
            transition: background-color 0.2s;
        }

        /* The Plus/Minus shapes using CSS pseudo-elements */
        .icon-wrapper::before,
        .icon-wrapper::after {
            content: '';
            position: absolute;
            background-color: #000;
            transition: transform 0.3s ease;
        }

        /* Horizontal line (always visible) */
        .icon-wrapper::before {
            width: 12px;
            height: 2px;
        }

        /* Vertical line (rotates to hide for minus effect) */
        .icon-wrapper::after {
            width: 2px;
            height: 12px;
        }

        /* Active State for Icon */
        .faq-item.active .icon-wrapper::after {
            transform: rotate(90deg); /* Rotates to align with horizontal line */
        }

        /* Answer Styling */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-answer p {
            padding-bottom: 24px;
            font-size: 15px;
            line-height: 1.5;
            color: #666;
            padding-right: 5rem; /* Keep text from hitting the right edge near where icon was */
        }

        /* Active Class Logic handled by JS */
        /* .faq-item.active .faq-answer {
            
        } */

            /* Responsive Design for Desktop */

    @media screen and (max-width: 1140px) and (min-width: 992px)
    {
        .faq-container
        {
            max-width: 900px;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .faq-header
        {
            margin-bottom: 50px;
        }

        .faq-title
        {
            font-size: 40px;
        }
    }

/* Responsive Design for Tab */

@media screen and (max-width: 991px) and (min-width: 768px)
{   
    .faq-container
    {
        max-width: 720px;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    .faq-header
    {
        margin-bottom: 50px;
    }

    .faq-title
    {
        font-size: 35px;
    }
}

/* Responsive Design for Smartphone */

@media screen and (max-width: 767px) and (min-width: 360px)
{   
    .faq-container
    {
        max-width: 720px;
        margin-top: 0;
        margin-bottom: 2rem;
        padding: 0 30px;
    }

    .faq-header
    {
        margin-bottom: 30px;
        padding-top: 1.5rem !important;
    }

    .faq-title
    {
        font-size: 24px;
    }

    .faq-question
    {
        font-size: 17px;
    }

    .faq-answer p
    {
        font-size: 14px;
    }
}