 .faq-container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 1.5rem;
        }

        .faq-title {
            text-align: center;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #212529;
            font-size: 2rem;
        }

        .divider {
            height: 3px;
            background-color: #e63946;
            margin-bottom: 2rem;
        }

        .accordion-item {
            margin-bottom: 1rem;
            border: none;
        }

        .accordion-button {
            background-color: #e9ecef !important;
            color: #212529;
            font-weight: 500;
            padding: 1rem 1.25rem;
            border-radius: 4px !important;
        }

        .accordion-button:not(.collapsed) {
            color: #212529;
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d3b66'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-body {
            padding: 1.5rem;
            background-color: #fff;
            border-radius: 0 0 4px 4px;
            text-align: justify;
        }

        .question-marks {
            position: relative;
        }

        .question-mark {
            position: absolute;
            color: #0d3b66;
            opacity: 0.8;
        }

        .question-mark-1 {
            font-size: 5rem;
            top: 0;
            right: 20px;
        }

        .question-mark-2 {
            font-size: 3.5rem;
            top: 80px;
            right: 80px;
        }

        .question-mark-3 {
            font-size: 7rem;
            top: 150px;
            right: 0;
        }

        .question-mark-4 {
            font-size: 4rem;
            top: 250px;
            right: 60px;
        }

        .right-border {
            position: absolute;
            top: 0;
            right: 0;
            width: 3px;
            height: 100%;
            background-color: #e63946;
        }

        @media (max-width: 992px) {
            .question-marks {
                display: none;
            }

            .right-border {
                display: none;
            }
        }