
        
        .faq-container {
            margin: 40px auto;
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .faq-header h1 {
            color:#c45305;
            font-size: 2.8rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .faq-header h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }
        
        .faq-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 30px auto 0;
        }
        
        .intro-box {
            background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
            border-left: 5px solid var(--secondary-color);
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 40px;
            box-shadow: var(--shadow);
        }
        
        .intro-box h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        
        .intro-box p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
		
		
		
		
        
        .faq-accordion {
            max-width: 1170px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid var(--border-color);
			box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .faq-item:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .faq-question {
            padding: 15px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: white;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background-color: #f9f9f9;
        }
        
        .faq-question h3 {
            font-size:23px;
            color: #06b2b5;
            font-weight: 500;
            flex: 1;
            margin-right: 20px;
        }
        
        .faq-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #058cd2 !important;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            flex-shrink: 0;
        }
        
        .faq-item.active .faq-icon {
            background-color:#f07429 !important;
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
            background-color: #fcfcfc;
        }
		
		.faq-answer h4 {
			font-size:15px;
			color:#1b1b1b;
           
        }
		
        
        .faq-item.active .faq-answer {
            max-height: 1000px;
            padding: 15px 30px 30px;
             border-top: 1px solid #e3e0e0;
        }
        
        .faq-answer p {
            margin-bottom: 15px;
            line-height:22px;
			color:#1b1b1b;
			text-align:justify;
			
        }
        
        .faq-answer ul, .faq-answer ol {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .faq-answer li {
            margin-bottom: 8px;
        }
        
        .highlight {
            background-color: #fff9f0;
            border-left: 4px solid var(--accent-color);
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .contact-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2a7a9a 100%);
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            margin-top: 60px;
            color: white;
            box-shadow: var(--shadow);
        }
        
        .contact-section h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .contact-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 25px;
            opacity: 0.9;
        }
        
        .contact-btn {
            display: inline-block;
            background-color: white;
            color: var(--primary-color);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
            background-color: #f0f8ff;
        }
        
        .kv-tagline {
            text-align: center;
            font-style: italic;
            color: var(--secondary-color);
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px dashed var(--border-color);
            font-size: 1.1rem;
        }
        
        @media (max-width: 768px) {
          
            .faq-header h1 {
                font-size: 2.2rem;
            }
            
            .faq-question {
                padding: 20px;
            }
            
            .faq-question h3 {
                font-size: 1.1rem;
            }
            
            .faq-answer, .faq-item.active .faq-answer {
                padding-left: 20px;
                padding-right: 20px;
            }
            
            .contact-section {
                padding: 30px 20px;
            }
        }