.service-item {
                display: flex;
                flex-direction: column;
                align-items: start;
                cursor: pointer;
                transition: font-size 0.3s ease-in-out;
                text-align: start;
            }

            .chevron-wrapper {
                display: flex;
                align-items: center;
            }

            .chevron {
                display: inline-block;
                margin-right: 8px;
                font-size: 24px;
                transition: transform 0.3s ease-in-out;
            }

            .bold {
                font-weight: 600;
            }

            .text {
                transition:
                    font-weight 0.3s ease-in-out,
                    font-size 0.3s ease-in-out;
            }

            .expanded .text {
                font-weight: 600;
                font-size: 1.1em;
            }

            .chevron.rotate {
                transform: rotate(90deg);
            }

            .message {
                padding-left: 2em;
                opacity: 1;
                transform: translateY(0);
                text-transform: none;
            }

            ul {
                list-style: none; /* Remove default bullets */
                padding-left: 0; /* Optional: Remove left padding */
            }

            ul li::before {
                content: "✔️"; /* Checkmark symbol */
                color: #542de2; /* Optional: Change color */
                font-size: 0.8em; /* Optional: Adjust size */
/*                margin-right: 8px; !* Space between icon and text *!*/
            }