.elementor-2315 .elementor-element.elementor-element-a465b33{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8eb4af3 */:root {
        --primary-color: #f22283;
        --secondary-color: #1f3d9d;
        --rare-color: #119809;
        --text-color: #333333;
        --bg-color: #f4f7f6; /* Medical-type soft background */
        --white: #ffffff;
    }

    /* Base reset for the snippet scope */
    #medigocare-blog-wrapper {
        font-family: inherit; /* Inherits default WordPress theme font */
        color: var(--text-color);
        line-height: 1.6;
        background-color: var(--bg-color);
        padding: 20px 0;
    }

    #medigocare-blog-wrapper section {
        background-color: var(--white);
        width: 100%;
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 30px;
        box-sizing: border-box;
        border: 1px solid #e5eaf0;
        transition: box-shadow 0.3s ease;
    }

    #medigocare-blog-wrapper section:hover {
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    #medigocare-blog-wrapper h1 {
        color: var(--secondary-color);
        font-size: 2.2rem;
        margin-bottom: 20px;
        font-weight: 700;
    }

    #medigocare-blog-wrapper h2 {
        color: var(--secondary-color);
        font-size: 1.8rem;
        margin-top: 10px;
        margin-bottom: 15px;
        border-bottom: 2px solid #e5eaf0;
        padding-bottom: 10px;
    }

    #medigocare-blog-wrapper h3 {
        color: var(--primary-color);
        font-size: 1.4rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    #medigocare-blog-wrapper p {
        margin-bottom: 15px;
    }

    #medigocare-blog-wrapper a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
    }

    #medigocare-blog-wrapper a:hover {
        text-decoration: underline;
        color: var(--secondary-color);
    }

    .medigo-quote {
        border-left: 5px solid var(--primary-color);
        background-color: #fcfcfc;
        padding: 15px 20px;
        margin: 20px 0;
        border-radius: 0 10px 10px 0;
        font-style: italic;
    }

    .info-needed {
        color: red;
        font-weight: bold;
        background-color: #ffe5e5;
        padding: 2px 5px;
        border-radius: 4px;
    }

    .medigo-image-container {
        text-align: center;
        margin: 25px 0;
    }

    .medigo-image-container img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }

    .medigo-toc {
        background-color: #f8fbfa;
        border: 1px solid var(--secondary-color);
        border-radius: 10px;
        padding: 15px;
        margin-bottom: 30px;
    }

    .medigo-toc summary {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--secondary-color);
        cursor: pointer;
        list-style: none;
        display: flex;
        align-items: center;
    }
    
    .medigo-toc summary::-webkit-details-marker {
        display: none;
    }

    .medigo-toc summary::before {
        content: "\f0c9"; /* FontAwesome bars */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px;
        color: var(--primary-color);
    }

    .medigo-toc ul {
        margin-top: 15px;
        padding-left: 20px;
    }

    .medigo-toc li {
        margin-bottom: 8px;
    }

    .medigo-toc a {
        color: var(--text-color);
        font-weight: 500;
    }
    .medigo-toc a:hover {
        color: var(--primary-color);
    }

    .medigo-table-wrapper {
        overflow-x: auto;
        margin: 20px 0;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }

    .medigo-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }

    .medigo-table th {
        background-color: var(--secondary-color);
        color: var(--white);
        padding: 15px;
        text-align: left;
    }

    .medigo-table td {
        padding: 12px 15px;
        border-bottom: 1px solid #e5eaf0;
    }

    .medigo-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .medigo-table tr:hover {
        background-color: #f1f1f1;
    }

    .medigo-faq-item {
        margin-bottom: 15px;
        border: 1px solid #e5eaf0;
        border-radius: 10px;
        overflow: hidden;
    }

    .medigo-faq-question {
        width: 100%;
        text-align: left;
        background-color: var(--white);
        padding: 15px 20px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--secondary-color);
        border: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s ease;
    }

    .medigo-faq-question:hover {
        background-color: #f8fbfa;
    }

    .medigo-faq-question::after {
        content: '\f067'; /* FontAwesome Plus */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: var(--primary-color);
        transition: transform 0.3s ease;
    }

    .medigo-faq-item.active .medigo-faq-question::after {
        transform: rotate(45deg);
    }

    .medigo-faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        background-color: var(--white);
    }

    .medigo-faq-answer-inner {
        padding: 15px 20px;
        border-top: 1px solid #e5eaf0;
    }

    .medigo-cta-box {
        text-align: center;
        background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
        color: var(--white);
    }

    .medigo-cta-box h2 {
        color: var(--white);
        border-bottom: none;
    }

    .medigo-btn {
        display: inline-block;
        background-color: var(--rare-color);
        color: var(--white) !important;
        padding: 15px 30px;
        border-radius: 30px;
        font-size: 1.1rem;
        font-weight: 700;
        margin: 10px;
        transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }

    .medigo-btn:hover {
        background-color: var(--white);
        color: var(--rare-color) !important;
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        text-decoration: none !important;
    }

    @media (max-width: 768px) {
        #medigocare-blog-wrapper section {
            padding: 15px;
        }
        #medigocare-blog-wrapper h1 {
            font-size: 1.8rem;
        }
        .medigo-btn {
            display: block;
            margin: 10px auto;
            width: 80%;
        }
    }/* End custom CSS */