.elementor-4771 .elementor-element.elementor-element-41f0084{--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-e23229e */.mbbs-post-wrapper {
        --primary: #003567;
        --secondary: #007c30;
        --accent: #a97800;
        --text-color: #000000;
        --bg-medical: #f4f8fb;
        --white: #ffffff;
        
        font-family: inherit; /* Uses default WordPress theme font */
        color: var(--text-color);
        line-height: 1.6;
        background-color: var(--bg-medical);
        padding: 20px;
        border-radius: 15px;
    }

    /* Section Styling */
    .mbbs-post-wrapper section {
        width: 100%;
        padding: 30px 20px;
        border-radius: 15px;
        background-color: var(--white);
        margin-bottom: 25px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.03);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        box-sizing: border-box;
    }
    
    .mbbs-post-wrapper section:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    /* Typography */
    .mbbs-post-wrapper h1, 
    .mbbs-post-wrapper h2, 
    .mbbs-post-wrapper h3 {
        color: var(--primary);
        margin-top: 0;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .mbbs-post-wrapper h1 { font-size: 2.2rem; line-height: 1.3; }
    .mbbs-post-wrapper h2 { font-size: 1.8rem; border-bottom: 2px solid var(--bg-medical); padding-bottom: 10px;}
    .mbbs-post-wrapper h3 { font-size: 1.4rem; color: var(--secondary); margin-top: 25px;}
    
    .mbbs-post-wrapper p {
        margin-bottom: 15px;
        font-size: 1.05rem;
    }

    /* Feature/Summary Box */
    .summary-box {
        background-color: rgba(0, 124, 48, 0.05);
        border-left: 5px solid var(--secondary);
        padding: 20px;
        border-radius: 0 15px 15px 0;
        margin: 20px 0;
    }
    .summary-box p { margin: 0; font-style: italic; }
    .summary-box strong { color: var(--primary); }

    /* Images */
    .mbbs-post-wrapper img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        margin-bottom: 10px;
        display: block;
    }
    .img-caption {
        text-align: center;
        font-size: 0.9rem;
        color: #555;
        font-style: italic;
        margin-bottom: 25px;
    }

    /* Table of Contents */
    .toc-container {
        background-color: var(--white);
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        padding: 15px 20px;
        margin-bottom: 30px;
    }
    .toc-container summary {
        font-weight: bold;
        font-size: 1.2rem;
        color: var(--primary);
        cursor: pointer;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .toc-container summary::-webkit-details-marker { display: none; }
    .toc-container summary::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        transition: transform 0.3s ease;
    }
    .toc-container[open] summary::after { transform: rotate(180deg); }
    .toc-container ol { margin-top: 15px; padding-left: 20px; }
    .toc-container ol li { margin-bottom: 10px; }
    .toc-container ol li a {
        color: var(--text-color);
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .toc-container ol li a:hover { color: var(--secondary); }

    /* Tables */
    .table-responsive {
        overflow-x: auto;
        margin-bottom: 25px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .mbbs-post-wrapper table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }
    .mbbs-post-wrapper th {
        background-color: var(--primary);
        color: var(--white);
        padding: 15px;
        text-align: left;
    }
    .mbbs-post-wrapper td {
        padding: 12px 15px;
        border-bottom: 1px solid #eee;
    }
    .mbbs-post-wrapper tr:nth-child(even) { background-color: #f9f9f9; }
    .mbbs-post-wrapper tr:hover { background-color: rgba(0, 124, 48, 0.05); }

    /* Lists */
    .mbbs-post-wrapper ul {
        list-style: none;
        padding-left: 0;
    }
    .mbbs-post-wrapper ul li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
    }
    .mbbs-post-wrapper ul li::before {
        content: '\f058';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: var(--secondary);
        position: absolute;
        left: 0;
        top: 2px;
    }

    /* FAQ Accordion (Pure HTML/CSS) */
    .faq-item {
        margin-bottom: 15px;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        overflow: hidden;
    }
    .faq-item summary {
        padding: 18px 20px;
        font-weight: bold;
        background-color: #fdfdfd;
        cursor: pointer;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--primary);
        font-size: 1.1rem;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
        content: '\f067';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: var(--secondary);
        transition: transform 0.3s ease;
    }
    .faq-item[open] summary { background-color: var(--bg-medical); border-bottom: 1px solid #e0e0e0;}
    .faq-item[open] summary::after { content: '\f068'; transform: rotate(180deg); }
    .faq-answer {
        padding: 20px;
        background-color: var(--white);
        line-height: 1.7;
    }

    /* Buttons / CTAs */
    .btn-cta {
        display: inline-block;
        background-color: var(--secondary);
        color: var(--white) !important;
        padding: 15px 35px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1rem;
        margin: 20px 0;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 124, 48, 0.3);
        text-align: center;
    }
    .btn-cta:hover {
        background-color: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0, 53, 103, 0.4);
    }
    .btn-cta i { margin-left: 8px; }

    /* Video Embed Container */
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
        border-radius: 15px;
        margin-bottom: 25px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Links */
    .mbbs-post-wrapper a {
        color: var(--accent);
        font-weight: bold;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .mbbs-post-wrapper a:hover {
        color: var(--primary);
        text-decoration: underline;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .mbbs-post-wrapper { padding: 10px; }
        .mbbs-post-wrapper section { padding: 20px 15px; }
        .mbbs-post-wrapper h1 { font-size: 1.8rem; }
        .mbbs-post-wrapper h2 { font-size: 1.5rem; }
    }/* End custom CSS */