:root {
            --primary-gradient: #00b894;
        }

   body {
            font-family: 'Hind Siliguri', sans-serif;
            background-color: #f0f2f5;
            padding: 20px;
            margin: 0;
        }

        .question-card { 
            margin-bottom: 25px; 
            padding: 15px; 
            border-bottom: 1px solid #f0f0f0; 
        }

        .container {
            max-width: 800px;
            margin: auto;
        }

        .header {
            background: var(--primary-gradient);
            color: white;
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0, 184, 148, 0.21);
        }

        .faq-item {
            background: white;
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .faq-question {
            width: 100%;
            padding: 15px 20px;
            background: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            border: none;
            outline: none;
            font-size: 17px;
            font-weight: 700;
            color: #000000;
            text-align: left;
            transition: 0.3s;
        }

        .faq-question:hover {
            background: 0 4px 15px rgba(0, 184, 148, 0.21);
        }

        .faq-question i {
            font-size: 20px;
            color: #00000;
            font-weight: bold;
            font-style: normal;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #fff;
        }

        .faq-answer-content {
            padding: 15px 20px;
            border-top: 1px solid #eee;
            color: #444;
            line-height: 1.6;
            border-left: 4px solid #00B894;
        }

        .active i {
            transform: rotate(45deg); /* প্লাস আইকনকে ক্রস করার জন্য চাইলে ব্যবহার করতে পারেন */
            color: 4px solid #00B894;
        }
		.header {
            position: relative;
            background: #00b894; /* আপনার থিম কালার */
            padding: 30px;
            color: white;
            text-align: center;
            border-radius: 15px;
        }

        /* ব্যাক বাটনের মূল স্টাইল */
        .header .back {
            position: absolute;
            left: 15px;
            top: 15px;
            color: white;
            text-decoration: none;
            font-size: 20px;
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 12px;
            border-radius: 8px;
            transition: 0.3s; /* স্মুথ ট্রানজিশনের জন্য */
        }

        /* হোভার করলে যা হবে */
        .header .back:hover {
            background: white !important;
            color: #0984e3 !important; /* ব্যাকগ্রাউন্ড হোয়াইট হলে আইকন নীল দেখাবে */
        }