/* FAQ Section Styles */

        .row{
            margin-bottom: 20px;
        }

        #faq-section {
            padding: 5px 0 ;
            background-color: #f9f9f9;
        }

        #faq-section h4.yellow {
            color: #f9a800;
            font-size: 3rem;
            font-weight: bold;
        }

        #faq-section h2.h1 {
            font-size: 2rem;
            font-weight: bold;
        }

        .faq-item {
            margin-bottom: 10px;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 15px;
            cursor: pointer;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: #333;
        }

        .faq-answer {
            display: none;
            padding: 10px 0;
            font-size: 1.5rem;
            color: #333;
            font-weight: bold;
        }

        .faq-toggle {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }

        /* Hover effects */
        .faq-item:hover {
            background-color: #f9f9f9;
        }

        .faq-question:hover {
            color: #f9a800;
        }

        .faq-answer p {
            margin: 0;
        }
        