@charset "utf-8";
/* CSS Document */
.faqs-header{
width: 100%;
	height: 30px;
	margin-top: 70px;
	margin-bottom: 50px;
	text-align: center;
	font-size: 21px
}
        .faq-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            overflow: hidden;
            margin-bottom: 30px;
				font-family: 'Hind', sans-serif;

        }
        
        .faq-item {
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
        }
        
        .faq-question:hover {
/*            background-color: #f9f9f9;*/
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: #f9f9f9;
            line-height: 1.7;
			text-align: left
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 20px;
        }
        
        .no-results {
            text-align: center;
            padding: 40px;
            color: #666;
            font-style: italic;
        }
        
        .admin-link {
            display: inline-block;
            padding: 12px 25px;
            background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .admin-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        
        .text-center {
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            .faq-question {
                padding: 15px;
                font-size: 1rem;
            }
            
         
        }
        
        .faq-count {
            background-color: #4e73df;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-left: 10px;
        }
