    .faq-section{
            margin-top: 40px;
            margin-bottom: 20px;
        }
        .faq-section h2{
            font-size: 24px !important;
             margin-bottom: 20px;
        }
        .faq-item h3{
            font-size: 20px !important;

        }

        .faq-section {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #e0e0e0;
        }

        .faq-section:last-child {
            border-bottom: none;
        }

        .faq-section h2 {
            color: #2c3e50;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #3498db;
            display: inline-block;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background-color: #f8f9fa;
            border-left: 4px solid #3498db;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background-color: #e9ecef;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transform: translateX(5px);
        }

        .faq-item h3 {
            color: #34495e;
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        .faq-item p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .faq-item p:last-child {
            margin-bottom: 0;
        }

        .faq-item ul {
            margin: 0.75rem 0;
            padding-left: 1.5rem;
        }

        .faq-item li {
            color: #555;
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }

        .faq-item a {
            color: #3498db;
            text-decoration: none;
            font-weight: 500;
        }

        .faq-item a:hover {
            color: #2980b9;
            text-decoration: underline;
        }

        /* Alternative color scheme for different sections */
        .faq-section:nth-child(odd) .faq-item {
            border-left-color: #3498db;
        }

        .faq-section:nth-child(even) .faq-item {
            border-left-color: #2ecc71;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .faq-section h2 {
                font-size: 1.5rem;
            }
            
            .faq-item {
                padding: 1rem;
            }
            
            .faq-item h3 {
                font-size: 1.1rem;
            }
        }