.elementor-699 .elementor-element.elementor-element-1e9d72b{--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;}body.elementor-page-699:not(.elementor-motion-effects-element-type-background), body.elementor-page-699 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#121212;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-0745f63 */.faq-section {
            min-height: 100vh;
            padding: 5vh 1rem; /* Use viewport height and rem for responsive padding */
        }

        /* Title Styles */
        .faq-title-container {
            text-align: center;
            margin-bottom: 45px;
        }

        .faq-title-container h2 {
            position: relative;
            display: inline-block;
            font-weight: 600;
            font-size: 2.5rem;
            color: #ffffff;
            padding-bottom: 25px; /* Space for the line */
        }

        .faq-title-container h2::before {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #E91E63;
            bottom: 0;
        }

        /* FAQ Container Styles */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden; /* Ensures children respect the border radius */
        }

        /* Individual FAQ Item (<details>) Styles */
        .faq-item {
            border-bottom: 1px solid #eef2f7;
        }
        .faq-item:last-child {
            border-bottom: none; /* Remove border from the last item */
        }

        /* Question (summary) Styles */
        .faq-question {
            display: flex; /* Using Flexbox for alignment */
            justify-content: space-between; /* Pushes title and icon apart */
            align-items: center;
            width: 100%;
            text-align: left;
            padding: 20px 30px;
            font-weight: 600;
            font-size: 16px;
            color: #3B566E;
            cursor: pointer;
            list-style: none; /* Removes the default triangle marker */
            transition: background-color 0.3s ease;
        }
        
        .faq-question::-webkit-details-marker {
            display: none; /* Hides default marker in Webkit browsers */
        }

        .faq-question:hover {
            background-color: rgba(233, 30, 99, 0.05);
        }

        .faq-question .badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 25px;
            height: 25px;
            background: #E91E63;
            color: #fff;
            font-size: 12px;
            border-radius: 50%;
            margin-right: 20px;
            flex-shrink: 0; /* Prevents the badge from shrinking */
        }
        
        /* Rotating Arrow Icon */
        .faq-question::after {
            content: '+';
            font-size: 2rem;
            color: #E91E63;
            transition: transform 0.3s ease;
            margin-left: 1rem;
        }

        .faq-item[open] > .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-item[open] > .faq-question {
            background-color: rgba(233, 30, 99, 0.1);
        }


        /* Answer (content inside <details>) Styles */
        .faq-answer {
            padding: 0 30px 30px 30px;
            font-weight: 400;
            font-size: 16px;
            color: #6F8BA4;
            line-height: 1.75;
            border-top: 1px solid #eef2f7;
        }

        .faq-answer p {
            margin: 1rem 0 0 0;
        }
        
        .faq-answer a {
            color: #584efd;
            text-decoration: none;
            font-weight: bold;
        }
        
        .faq-answer a:hover {
            text-decoration: underline;
        }/* End custom CSS */