#faq {
            max-width: 800px;
            margin: 30px auto;
            padding: 15px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
        }

        h2.FAQ-head {
            text-align: center;
            color: black;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .faq-item {
            margin-bottom: 5px;
        }

        .faq-item h3.q-head {
            background-color: beige;
            color: black;
            padding: 10px 20px;
            border-radius: 20px 20px 0 0; 
            cursor: pointer;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            transition: background-color 0.3s ease;
            font-size: 16px;
            box-sizing: border-box;
        }

        .faq-item h3.q-head::after {
            content: "+";
            font-size: 18px;
            font-weight: bold;
            color: black;
            margin-left: 10px;
            transition: content 0.3s ease;
        }

        .faq-item p {
            font-size: 14px;
            padding: 10px 20px;
            background-color: white;
            color: black;
            border: 1px solid #ddd;
            border-radius: 0 0 20px 20px;
            margin: 0;
            height: 0;
            overflow: hidden;
            opacity: 0;
            position: relative;
            transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
            box-sizing: border-box;
        }

        .faq-item:hover h3.q-head {
            background-color: olivedrab;
        }

        .faq-item.active h3.q-head::after {
            content: "-"; 
        }

        .faq-item.active p {
            height: auto;
            opacity: 1;
            padding: 10px 20px;
        } 