.elementor-2327 .elementor-element.elementor-element-a465b33{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8eb4af3 */:root {
        --primary: #f22283;
        --secondary: #1f3d9d;
        --rare: #119809;
        --text-color: inherit;
        --bg-color: #ffffff;
        --medical-bg: #f8fbff;
        --radius: 15px;
        --padding: 20px;
    }

    .medigo-blog-section {
        width: 100%;
        background-color: var(--medical-bg);
        color: var(--text-color);
        font-family: inherit;
        line-height: 1.7;
        box-sizing: border-box;
    }

    .medigo-card {
        background-color: var(--bg-color);
        padding: var(--padding);
        border-radius: var(--radius);
        margin-bottom: 30px;
        transition: box-shadow 0.3s ease;
        border: 1px solid #e1e8ed;
    }

    .medigo-card:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .medigo-blog-section h1, 
    .medigo-blog-section h2, 
    .medigo-blog-section h3 {
        color: var(--secondary);
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .medigo-blog-section h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        border-bottom: 3px solid var(--primary);
        padding-bottom: 10px;
        display: inline-block;
    }

    .medigo-blog-section h2 {
        font-size: 1.8rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .medigo-blog-section p {
        margin-bottom: 15px;
        font-size: 1.05rem;
    }

    .medigo-img {
        width: 100%;
        height: auto;
        border-radius: var(--radius);
        object-fit: cover;
        margin: 20px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .medigo-list {
        list-style: none;
        padding-left: 0;
    }

    .medigo-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
    }

    .medigo-list li::before {
        content: '\f058';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: var(--primary);
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 1.2rem;
    }

    .medigo-steps {
        counter-reset: journey-step;
        list-style: none;
        padding-left: 0;
    }

    .medigo-steps li {
        position: relative;
        padding-left: 50px;
        margin-bottom: 20px;
    }

    .medigo-steps li::before {
        counter-increment: journey-step;
        content: counter(journey-step);
        position: absolute;
        left: 0;
        top: 0;
        width: 35px;
        height: 35px;
        background-color: var(--secondary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.1rem;
    }

    .medigo-table-wrapper {
        overflow-x: auto;
        margin-bottom: 20px;
        border-radius: var(--radius);
        border: 1px solid #e1e8ed;
    }

    .medigo-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
        background-color: var(--bg-color);
        min-width: 700px;
    }

    .medigo-table th {
        background-color: var(--secondary);
        color: white;
        padding: 15px;
        font-weight: 600;
    }

    .medigo-table td {
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .medigo-table tr:hover {
        background-color: #f9f9f9;
    }

    .medigo-toc {
        background-color: var(--bg-color);
        border: 2px solid var(--primary);
        border-radius: var(--radius);
        padding: var(--padding);
        margin-bottom: 30px;
    }

    .medigo-toc summary {
        font-weight: bold;
        font-size: 1.2rem;
        cursor: pointer;
        color: var(--secondary);
        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: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: var(--primary);
        transition: transform 0.3s;
    }

    .medigo-toc[open] summary::after {
        transform: rotate(180deg);
    }

    .medigo-toc ul {
        margin-top: 15px;
        padding-left: 20px;
    }

    .medigo-toc ul li {
        margin-bottom: 10px;
    }

    .medigo-toc ul li a {
        color: var(--secondary);
        text-decoration: none;
        transition: color 0.3s;
    }

    .medigo-toc ul li a:hover {
        color: var(--primary);
        text-decoration: underline;
    }

    .medigo-faq details {
        background-color: var(--bg-color);
        border: 1px solid #e1e8ed;
        border-radius: var(--radius);
        margin-bottom: 15px;
        overflow: hidden;
    }

    .medigo-faq summary {
        padding: 15px 20px;
        font-weight: bold;
        cursor: pointer;
        background-color: var(--medical-bg);
        color: var(--secondary);
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .medigo-faq summary::-webkit-details-marker {
        display: none;
    }

    .medigo-faq summary::after {
        content: '\f067';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: var(--rare);
    }

    .medigo-faq details[open] summary::after {
        content: '\f068';
        color: var(--primary);
    }

    .medigo-faq .faq-content {
        padding: 15px 20px;
        border-top: 1px solid #e1e8ed;
    }

    .medigo-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: var(--primary);
        color: white;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(242, 34, 131, 0.4);
    }

    .medigo-cta:hover {
        background-color: var(--secondary);
        color: white;
        box-shadow: 0 8px 20px rgba(31, 61, 157, 0.4);
        transform: translateY(-2px);
    }

    .medigo-alert-red {
        background-color: #ffeef0;
        border-left: 4px solid red;
        padding: 15px;
        border-radius: 5px;
        color: red;
        font-weight: 600;
        margin: 15px 0;
    }

    .medigo-links a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
    }
    
    .medigo-links a:hover {
        color: var(--secondary);
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .medigo-blog-section h1 { font-size: 1.8rem; }
        .medigo-blog-section h2 { font-size: 1.5rem; }
        .medigo-card { padding: 15px; }
    }/* End custom CSS */