.elementor-1676 .elementor-element.elementor-element-c779290{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-c779290 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --light-bg: #f5f5f5;
            --emerald: #50c878;
            --emerald-dark: #3da85f;
            --firebrick: #b22222;
            --dark-slate: #2c3e50;
            --white: #ffffff;
            --gray-light: #f8f9fa;
            --gray-medium: #6c757d;
            --shadow: rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-slate);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--light-bg);
        }

        h1, h2, h3, h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
        }

        .animate-on-scroll.visible {
            animation: fadeInUp 0.9s ease forwards;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, var(--emerald) 0%, var(--firebrick) 100%);
            padding: 2rem 2rem;
            text-align: center;
        }

        .header h1 {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 0.2rem;
            text-transform: capitalize;
        }

        .header p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 900px;
            margin: 0 auto;
        }

        /* FAQs Section */
        .faqs-section {
            background: var(--white);
            padding: 4rem 2rem;
        }

        .faqs-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--light-bg);
            margin-bottom: 1.5rem;
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--emerald);
            box-shadow: 0 5px 15px rgba(80, 200, 120, 0.2);
        }

        .faq-question {
            padding: 1.8rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--light-bg);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(80, 200, 120, 0.1);
        }

        .faq-question h3 {
            font-size: 1.15rem;
            color: var(--dark-slate);
            margin: 0;
            flex: 1;
            font-weight: 600;
       letter-spacing: 2.0px;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--emerald);
            font-weight: bold;
            transition: all 0.3s ease;
            margin-left: 1rem;
        }

        .faq-item.active .faq-icon {
            color: var(--firebrick);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-content {
            padding: 0 2rem 2rem;
            color: var(--dark-slate);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .faq-answer-content p {
            margin-bottom: 1rem;
        }

        .faq-answer-content ul {
            margin: 1rem 0 1rem 1.5rem;
            list-style: disc;
        }

        .faq-answer-content li {
            margin-bottom: 0.5rem;
            color: var(--dark-slate);
        }

        .faq-item.active .faq-answer {
            max-height: 600px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
            padding: 4rem 2rem;
            text-align: center;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.2rem;
            color: var(--dark-slate);
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.1rem;
            color: var(--gray-medium);
            margin-bottom: 2rem;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 1rem;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--emerald);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(80, 200, 120, 0.3);
        }

        .btn-primary:hover {
            background: var(--firebrick);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(178, 34, 34, 0.4);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2rem;
            }

            .header p {
                font-size: 1rem;
            }

            .faq-question {
                padding: 1.5rem 1.5rem;
            }

            .faq-question h3 {
                font-size: 1.05rem;
            }

            .faq-answer-content {
                padding: 0 1.5rem 1.5rem;
                font-size: 1rem;
            }

            .cta-content h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 2.5rem 1.5rem;
            }

            .header h1 {
                font-size: 1.8rem;
            }

            .faqs-section {
                padding: 3rem 1.5rem;
            }

            .faq-question {
                padding: 1.2rem 1rem;
            }

            .faq-question h3 {
                font-size: 0.95rem;
            }

            .faq-icon {
                font-size: 1.3rem;
            }
        }/* End custom CSS */