.elementor-2116 .elementor-element.elementor-element-108aef0{--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;}/* Start custom CSS for html, class: .elementor-element-f74efce */:root {
        --mgc-primary: #f22283;
        --mgc-secondary: #1f3d9d;
        --mgc-rare: #119809;
        --mgc-text: #222222;
        --mgc-bg: #ffffff;
        --mgc-bg-alt: #f4f6fa;
    }

    /* Base section styling matching requirement */
    .mgc-section {
        width: 100%;
        padding: 20px;
        border-radius: 15px;
        background-color: var(--mgc-bg);
        margin-bottom: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        color: var(--mgc-text);
        box-sizing: border-box;
    }

    .mgc-section:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Headings */
    .mgc-section h1 {
        color: var(--mgc-secondary);
        font-size: 2.2rem;
        margin-bottom: 20px;
        line-height: 1.3;
        border-bottom: 3px solid var(--mgc-primary);
        padding-bottom: 10px;
        display: inline-block;
    }

    .mgc-section h2 {
        color: var(--mgc-secondary);
        font-size: 1.8rem;
        margin-top: 20px;
        margin-bottom: 15px;
        position: relative;
        padding-left: 15px;
    }

    .mgc-section h2::before {
        content: '';
        position: absolute;
        left: 0;
        top: 10%;
        height: 80%;
        width: 5px;
        background-color: var(--mgc-primary);
        border-radius: 5px;
    }

    .mgc-section p {
        line-height: 1.7;
        margin-bottom: 15px;
        font-size: 1.05rem;
    }

    .mgc-section strong {
        color: var(--mgc-secondary);
    }

    .mgc-section a {
        color: var(--mgc-primary);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s;
    }

    .mgc-section a:hover {
        color: var(--mgc-secondary);
        text-decoration: underline;
    }

    /* AEO Snippet */
    .mgc-aeo-snippet {
        background: var(--mgc-bg-alt);
        border-left: 5px solid var(--mgc-primary);
        padding: 20px;
        border-radius: 0 15px 15px 0;
        margin-bottom: 20px;
        font-size: 1.1rem;
        line-height: 1.6;
    }

    /* Images */
    .mgc-img-responsive {
        width: 100%;
        height: auto;
        border-radius: 15px;
        margin: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

    /* Table of Contents */
    .mgc-toc-container {
        background-color: var(--mgc-bg-alt);
        border: 1px solid #e0e0e0;
    }
    
    .mgc-toc-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-weight: bold;
        color: var(--mgc-secondary);
        font-size: 1.2rem;
    }

    .mgc-toc-list {
        list-style-type: none;
        padding: 15px 0 0 10px;
        margin: 0;
        border-top: 1px solid #ddd;
        margin-top: 15px;
    }

    .mgc-toc-list li {
        margin-bottom: 10px;
    }

    .mgc-toc-list a {
        color: var(--mgc-text);
        text-decoration: none;
        font-weight: 500;
    }

    .mgc-toc-list a:hover {
        color: var(--mgc-primary);
    }

    /* Buttons / CTAs */
    .mgc-cta-box {
        background: linear-gradient(135deg, var(--mgc-bg-alt) 0%, #ffffff 100%);
        border: 2px dashed var(--mgc-primary);
        text-align: center;
        padding: 30px 20px;
        margin: 30px 0;
    }

    .mgc-btn {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none !important;
        margin: 10px;
        transition: transform 0.2s, box-shadow 0.2s;
        border: none;
        cursor: pointer;
        color: #fff !important;
    }

    .mgc-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0,0,0,0.15);
    }

    .mgc-btn-primary {
        background-color: var(--mgc-primary);
    }

    .mgc-btn-whatsapp {
        background-color: var(--mgc-rare);
    }

    /* FAQs Accordion */
    .mgc-faq-item {
        margin-bottom: 15px;
        border: 1px solid #eee;
        border-radius: 10px;
        overflow: hidden;
    }

    .mgc-faq-item summary {
        padding: 18px 20px;
        background-color: var(--mgc-bg-alt);
        cursor: pointer;
        font-weight: 600;
        color: var(--mgc-secondary);
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mgc-faq-item summary::-webkit-details-marker {
        display: none;
    }

    .mgc-faq-item summary::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: var(--mgc-primary);
        transition: transform 0.3s ease;
    }

    .mgc-faq-item[open] summary::after {
        transform: rotate(180deg);
    }

    .mgc-faq-item p {
        padding: 15px 20px;
        margin: 0;
        border-top: 1px solid #eee;
        background: #fff;
    }

    /* Verification Highlight Box */
    .mgc-verification-box {
        background-color: #fff3f3;
        border: 2px solid red;
        color: red;
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 25px;
        font-weight: bold;
    }

    .mgc-red-highlight {
        color: red;
        font-weight: bold;
        background: #ffeeee;
        padding: 2px 5px;
        border-radius: 4px;
    }

    /* Mobile Responsive Overrides */
    @media (max-width: 768px) {
        .mgc-section { padding: 15px; }
        .mgc-section h1 { font-size: 1.8rem; }
        .mgc-section h2 { font-size: 1.5rem; }
        .mgc-btn { width: 100%; box-sizing: border-box; display: block; margin: 10px 0; }
    }/* End custom CSS */