.elementor-2320 .elementor-element.elementor-element-a465b33{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8eb4af3 */:root {
        --medigo-primary: #f22283;
        --medigo-secondary: #1f3d9d;
        --medigo-rare: #119809;
        --medigo-text: #333333;
        --medigo-bg: #ffffff;
        --medigo-bg-light: #f4f7f6;
    }

    .medigo-blog-wrapper {
        font-family: inherit; /* Inherits default WP font */
        color: var(--medigo-text);
        line-height: 1.6;
        background-color: var(--medigo-bg);
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .medigo-blog-wrapper * {
        box-sizing: border-box;
    }

    /* Typography */
    .medigo-blog-wrapper h1, 
    .medigo-blog-wrapper h2, 
    .medigo-blog-wrapper h3 {
        color: var(--medigo-secondary);
        font-weight: 700;
        margin-top: 1.5em;
        margin-bottom: 0.5em;
    }

    .medigo-blog-wrapper h1 { font-size: 2.2rem; }
    .medigo-blog-wrapper h2 { font-size: 1.8rem; border-bottom: 2px solid var(--medigo-bg-light); padding-bottom: 10px;}
    .medigo-blog-wrapper h3 { font-size: 1.4rem; }
    
    .medigo-blog-wrapper p {
        margin-bottom: 1.2em;
        font-size: 1.05rem;
    }

    /* Interactive / Card Elements (Radius and Shadow as requested) */
    .medigo-card {
        background: var(--medigo-bg);
        border: 1px solid #e1e8ed;
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 25px;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .medigo-card:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Table of Contents */
    .medigo-toc {
        background-color: var(--medigo-bg-light);
        border-left: 5px solid var(--medigo-primary);
    }

    .medigo-toc summary {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--medigo-secondary);
        cursor: pointer;
        outline: none;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .medigo-toc summary::-webkit-details-marker {
        display: none;
    }

    .medigo-toc summary::after {
        content: '\f107'; /* FontAwesome angle-down */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        transition: transform 0.3s ease;
    }

    .medigo-toc[open] summary::after {
        transform: rotate(180deg);
    }

    .medigo-toc ul {
        margin-top: 15px;
        padding-left: 20px;
        list-style-type: none;
    }

    .medigo-toc ul li {
        margin-bottom: 10px;
    }

    .medigo-toc ul li a {
        color: var(--medigo-text);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .medigo-toc ul li a:hover {
        color: var(--medigo-primary);
    }

    /* Images */
    .medigo-blog-wrapper img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        display: block;
        margin: 20px auto;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        transition: box-shadow 0.3s ease;
    }

    .medigo-blog-wrapper img:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    /* Tables */
    .medigo-table-responsive {
        overflow-x: auto;
        border-radius: 15px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        margin-bottom: 25px;
        transition: box-shadow 0.3s ease;
    }
    
    .medigo-table-responsive:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .medigo-blog-wrapper table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }

    .medigo-blog-wrapper th, .medigo-blog-wrapper td {
        padding: 15px 20px;
        text-align: left;
        border-bottom: 1px solid #e1e8ed;
    }

    .medigo-blog-wrapper th {
        background-color: var(--medigo-secondary);
        color: #ffffff;
        font-weight: bold;
    }

    .medigo-blog-wrapper tr:nth-child(even) {
        background-color: var(--medigo-bg-light);
    }

    /* Lists */
    .medigo-blog-wrapper ul.medigo-list {
        list-style: none;
        padding-left: 0;
    }

    .medigo-blog-wrapper ul.medigo-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
    }

    .medigo-blog-wrapper ul.medigo-list li::before {
        content: '\f058'; /* FontAwesome check-circle */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: var(--medigo-rare);
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 1.1rem;
    }

    /* FAQ Accordion */
    .medigo-faq-item {
        margin-bottom: 15px;
    }

    .medigo-faq-item summary {
        background-color: var(--medigo-secondary);
        color: #ffffff;
        padding: 15px 20px;
        border-radius: 15px;
        cursor: pointer;
        font-weight: bold;
        outline: none;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .medigo-faq-item summary::-webkit-details-marker {
        display: none;
    }

    .medigo-faq-item summary::after {
        content: '\f067'; /* FontAwesome plus */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        transition: transform 0.3s ease;
    }

    .medigo-faq-item[open] summary {
        background-color: var(--medigo-primary);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .medigo-faq-item[open] summary::after {
        content: '\f068'; /* FontAwesome minus */
        transform: rotate(180deg);
    }

    .medigo-faq-item p {
        background-color: var(--medigo-bg-light);
        padding: 20px;
        margin-top: 0;
        border-radius: 0 0 15px 15px;
        border: 1px solid #e1e8ed;
        border-top: none;
    }

    /* CTA Section */
    .medigo-cta {
        background: linear-gradient(135deg, var(--medigo-secondary), #15296e);
        color: #ffffff;
        text-align: center;
        padding: 40px 20px;
        border-radius: 15px;
        margin-top: 40px;
        transition: box-shadow 0.3s ease;
    }

    .medigo-cta:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .medigo-cta h2 {
        color: #ffffff;
        border: none;
        margin-top: 0;
    }

    .medigo-btn {
        display: inline-block;
        background-color: var(--medigo-primary);
        color: #ffffff !important;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1rem;
        margin-top: 20px;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .medigo-btn:hover {
        background-color: #d11a6f;
        transform: translateY(-2px);
    }

    .medigo-btn i {
        margin-right: 8px;
    }
    
    /* Missing Info Highlight */
    .medigo-highlight-red {
        color: red;
        font-weight: bold;
        background-color: #ffe6e6;
        padding: 2px 6px;
        border-radius: 4px;
        border: 1px solid red;
    }

    /* Links */
    .medigo-blog-wrapper a {
        color: var(--medigo-primary);
        text-decoration: none;
    }
    
    .medigo-blog-wrapper a:hover {
        text-decoration: underline;
    }
    
    .medigo-meta {
        font-size: 0.9rem;
        color: #666;
        font-style: italic;
        margin-bottom: 20px;
    }/* End custom CSS */