.elementor-2174 .elementor-element.elementor-element-b95291e{--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-a560a88 */.medigo-blog-wrapper {
        font-family: inherit;
        color: #333;
        line-height: 1.6;
        background-color: #fcfcfc; /* Medical-type soft background */
        padding: 10px;
    }

    /* Section Styling */
    .medigo-section {
        width: 100%;
        padding: 20px;
        border-radius: 15px;
        background-color: #ffffff;
        margin-bottom: 25px;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    }
    
    .medigo-section:hover {
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    }

    /* Typography & Colors */
    .medigo-blog-wrapper h1, 
    .medigo-blog-wrapper h2, 
    .medigo-blog-wrapper h3 {
        color: #1f3d9d; /* Secondary Color */
        margin-top: 0;
        font-weight: 700;
    }

    .medigo-blog-wrapper h1 {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .medigo-blog-wrapper h2 {
        font-size: 1.8em;
        border-bottom: 2px solid #f22283; /* Primary Color */
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .medigo-blog-wrapper a {
        color: #f22283; /* Primary Color */
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s;
    }

    .medigo-blog-wrapper a:hover {
        color: #1f3d9d;
    }

    /* AEO Snippet */
    .medigo-aeo-snippet {
        border-left: 5px solid #119809; /* Rare Color */
        background-color: #f4fdf4;
        padding: 15px 20px;
        border-radius: 0 15px 15px 0;
        font-style: italic;
        margin: 20px 0;
    }

    /* Images */
    .medigo-image-container img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        margin: 15px 0;
        display: block;
    }

    /* Table of Contents */
    .medigo-toc {
        background-color: #f0f4fb;
        border: 1px solid #1f3d9d;
    }
    .medigo-toc-header {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #1f3d9d;
        font-weight: bold;
        font-size: 1.2em;
    }
    .medigo-toc-content {
        display: none; /* Collapsed by default */
        margin-top: 15px;
    }
    .medigo-toc-content ul {
        list-style: none;
        padding-left: 0;
    }
    .medigo-toc-content li {
        margin-bottom: 10px;
    }
    .medigo-toc-content a {
        color: #333;
        display: flex;
        align-items: center;
    }
    .medigo-toc-content a i {
        color: #f22283;
        margin-right: 10px;
        font-size: 0.8em;
    }

    /* Responsive Tables */
    .medigo-table-responsive {
        overflow-x: auto;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .medigo-blog-wrapper table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }
    .medigo-blog-wrapper th {
        background-color: #1f3d9d;
        color: #ffffff;
        padding: 15px;
        text-align: left;
    }
    .medigo-blog-wrapper td {
        padding: 15px;
        border-bottom: 1px solid #eee;
    }
    .medigo-blog-wrapper tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    /* FAQ Accordion */
    .medigo-faq-item {
        border-bottom: 1px solid #ddd;
        margin-bottom: 10px;
    }
    .medigo-faq-item:last-child {
        border-bottom: none;
    }
    .medigo-faq-question {
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        padding: 15px 0;
        font-size: 1.1em;
        font-weight: 600;
        color: #1f3d9d;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .medigo-faq-question:hover {
        color: #f22283;
    }
    .medigo-faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        color: #555;
    }
    .medigo-faq-answer p {
        padding: 0 0 15px 0;
        margin: 0;
    }
    .medigo-faq-icon {
        color: #f22283;
        transition: transform 0.3s ease;
    }
    .medigo-faq-active .medigo-faq-icon {
        transform: rotate(180deg);
    }
    .medigo-faq-active .medigo-faq-answer {
        max-height: 500px; /* Arbitrary large number to allow expansion */
    }

    /* Lists styling */
    .medigo-blog-wrapper ul {
        list-style-type: none;
        padding-left: 20px;
    }
    .medigo-blog-wrapper ul li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 10px;
    }
    .medigo-blog-wrapper ul li::before {
        content: "\f00c"; /* FontAwesome check */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #119809; /* Rare Color */
    }

    /* Call To Action */
    .medigo-cta {
        background: linear-gradient(135deg, #1f3d9d 0%, #172d75 100%);
        color: white;
        text-align: center;
    }
    .medigo-cta h3 {
        color: white;
        border-bottom: none;
    }
    .medigo-cta-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    .medigo-btn {
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: bold;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .medigo-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        color: white !important;
    }
    .medigo-btn-primary {
        background-color: #f22283;
        color: white !important;
    }
    .medigo-btn-whatsapp {
        background-color: #119809;
        color: white !important;
    }
    
    /* Missing Info Highlight */
    .medigo-highlight-red {
        color: red !important;
        font-weight: bold;
        background-color: #ffe6e6;
        padding: 2px 5px;
        border-radius: 4px;
    }/* End custom CSS */