        /* Remove all borders from accordion buttons */
        /* Remove left/right borders but keep top and bottom borders with more padding */
        .accordion-button {
            border-top: 1px solid #ddd !important; /* Light gray top border */
            border-bottom: 1px solid #ddd !important; /* Light gray bottom border */
            border-left: none !important;
            border-right: none !important;
            box-shadow: none !important;
            font-weight: normal;
            transition: background-color 0.3s ease-in-out;
            padding-top: 20px !important; /* Increased top padding */
            padding-bottom: 20px !important; /* Increased bottom padding */
        }



        /* Change background color when accordion button is clicked (opened) */
        .accordion-button:not(.collapsed) {
            background-color: #f9f5f0 !important; /* Light blue */
            color: #333;
        }

        /* Change background color of entire accordion item when opened */
        .accordion-item.active {
            background-color: #f9f5f0 !important; /* Slightly lighter blue */
        }

        /* Remove accordion item border */
        .accordion-item {
            border: none !important;
            transition: background-color 0.3s ease-in-out;
        }

        /* Style for accordion body */
        .accordion-body {
            font-size: 0.9rem; /* Smaller text size (14px if base is 16px) */
            padding: 30px !important; /* Adds more spacing inside the accordion body */
            line-height: 1.8; /* Improves readability */
            color: #333; /* Slightly darker text for better contrast */
        }


        /* Add spacing and consistent styling */
        .faq-section {
            margin-bottom: 200px;
        }

        .faq-cat-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }


        /* Increase spacing between categories and add top border */
        .faq-category-row {
            margin-bottom: 60px; /* More space between categories */
            border-top: 2px solid #ddd; /* Adds a light gray top border */
            padding-top: 50px; /* Adds some space between the border and content */
        }


        .faq-category {
            padding-right: 20px;
        }