        .heading {
            text-align: center;
            color: #C4261C;
        }

        .faq-item h3 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 24px;
            color: #C4261C;
            margin: 0;
        }
        
        .arrow {
            font-size: 18px; /* Adjust size as needed */
            transition: transform 0.3s ease;
        }
        
        .faq-item p {
            display: none;
            margin: 0;
            padding: 10px 0 0 20px;
        }
        
        .faq-item.active p {
            display: block;
        }
        
        .faq-item.active .arrow {
            transform: rotate(180deg);
        }
        

