.elementor-2078 .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 */.mgc-blog-wrapper {
        --primary: #f22283;
        --secondary: #1f3d9d;
        --rare: #119809;
        --text-dark: #222222;
        --bg-light: #f4f8fc; /* Medical-type background */
        --bg-white: #ffffff;
        font-family: inherit;
        color: var(--text-dark);
        line-height: 1.7;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .mgc-blog-wrapper * {
        box-sizing: border-box;
    }

    /* Section Styling */
    .mgc-section {
        background-color: var(--bg-white);
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 30px;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        border: 1px solid #eef2f7;
    }
    
    .mgc-section:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }

    /* Typography */
    .mgc-blog-wrapper h1, 
    .mgc-blog-wrapper h2, 
    .mgc-blog-wrapper h3 {
        color: var(--secondary);
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .mgc-blog-wrapper h1 { font-size: 2.2rem; line-height: 1.3; }
    .mgc-blog-wrapper h2 { font-size: 1.8rem; margin-top: 20px; border-bottom: 2px solid #eef2f7; padding-bottom: 10px;}
    .mgc-blog-wrapper h3 { font-size: 1.4rem; color: var(--primary); }
    
    .mgc-blog-wrapper p { margin-bottom: 15px; }

    /* AEO Snippet Block */
    .mgc-aeo-snippet {
        background: linear-gradient(to right, rgba(31, 61, 157, 0.05), rgba(242, 34, 131, 0.05));
        border-left: 5px solid var(--primary);
        padding: 20px;
        border-radius: 0 15px 15px 0;
        font-size: 1.1rem;
        font-weight: 500;
        margin: 20px 0;
        color: var(--secondary);
    }

    /* Table of Contents */
    .mgc-toc {
        background-color: var(--bg-light);
        border: 1px solid var(--secondary);
        border-radius: 15px;
        padding: 20px;
        margin: 30px 0;
    }
    .mgc-toc summary {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--secondary);
        cursor: pointer;
        list-style: none;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .mgc-toc summary::-webkit-details-marker { display: none; }
    .mgc-toc ul {
        margin-top: 15px;
        padding-left: 20px;
    }
    .mgc-toc li { margin-bottom: 8px; }
    .mgc-toc a {
        color: var(--secondary);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .mgc-toc a:hover { color: var(--primary); }

    /* Tables */
    .mgc-table-responsive {
        overflow-x: auto;
        margin: 20px 0;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    .mgc-blog-wrapper table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
        background: var(--bg-white);
    }
    .mgc-blog-wrapper th {
        background-color: var(--secondary);
        color: var(--bg-white);
        padding: 15px;
        font-weight: 600;
        white-space: nowrap;
    }
    .mgc-blog-wrapper td {
        padding: 15px;
        border-bottom: 1px solid #eef2f7;
    }
    .mgc-blog-wrapper tr:last-child td { border-bottom: none; }
    .mgc-blog-wrapper tr:nth-child(even) { background-color: #f9fbfd; }
    .mgc-blog-wrapper tr:hover td { background-color: rgba(242, 34, 131, 0.05); }

    /* Images */
    .mgc-img-box {
        width: 100%;
        margin: 25px 0;
        text-align: center;
    }
    .mgc-img-box img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .mgc-img-box img:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    /* Lists */
    .mgc-blog-wrapper ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }
    .mgc-blog-wrapper li {
        margin-bottom: 10px;
    }
    .mgc-blog-wrapper ul li::marker {
        color: var(--primary);
        font-weight: bold;
    }

    /* FAQs Accordion */
    .mgc-faq {
        background: var(--bg-white);
        border: 1px solid #eef2f7;
        border-radius: 15px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: box-shadow 0.3s;
    }
    .mgc-faq:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .mgc-faq summary {
        padding: 20px;
        font-weight: 600;
        color: var(--secondary);
        cursor: pointer;
        background-color: #f9fbfd;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .mgc-faq summary::-webkit-details-marker { display: none; }
    .mgc-faq summary:after {
        content: '\f067'; /* FontAwesome Plus */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: var(--primary);
        transition: transform 0.3s;
    }
    .mgc-faq[open] summary:after {
        content: '\f068'; /* FontAwesome Minus */
        transform: rotate(180deg);
    }
    .mgc-faq p {
        padding: 20px;
        margin: 0;
        border-top: 1px solid #eef2f7;
    }

    /* CTA Section */
    .mgc-cta {
        background: linear-gradient(135deg, var(--secondary), #2a52d0);
        color: var(--bg-white);
        text-align: center;
    }
    .mgc-cta h2, .mgc-cta p {
        color: var(--bg-white);
        border: none;
    }
    .mgc-btn {
        display: inline-block;
        background-color: var(--rare);
        color: var(--bg-white);
        padding: 15px 30px;
        border-radius: 15px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1rem;
        margin-top: 15px;
        transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
        box-shadow: 0 5px 15px rgba(17, 152, 9, 0.4);
    }
    .mgc-btn:hover {
        background-color: var(--primary);
        color: var(--bg-white);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(242, 34, 131, 0.4);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .mgc-blog-wrapper h1 { font-size: 1.8rem; }
        .mgc-blog-wrapper h2 { font-size: 1.5rem; }
        .mgc-section { padding: 15px; }
    }/* End custom CSS */