.elementor-4765 .elementor-element.elementor-element-ac81809{--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-0ff932e *//* Base Variables & Typography */
    :root {
        --mbbs-primary: #003567;
        --mbbs-secondary: #007c30;
        --mbbs-rare: #a97800;
        --mbbs-text: #000000;
        --mbbs-bg-light: #ffffff;
        --mbbs-bg-alt: #f4f8fb;
        --mbbs-radius: 15px;
    }

    .mbbs-wrapper {
        font-family: inherit;
        color: var(--mbbs-text);
        line-height: 1.6;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .mbbs-wrapper h1, .mbbs-wrapper h2, .mbbs-wrapper h3 {
        color: var(--mbbs-primary);
        font-weight: 700;
        margin-top: 1.5em;
        margin-bottom: 0.75em;
    }

    .mbbs-wrapper h1 { font-size: 2.2rem; line-height: 1.3; }
    .mbbs-wrapper h2 { font-size: 1.8rem; border-bottom: 2px solid var(--mbbs-bg-alt); padding-bottom: 10px; }
    .mbbs-wrapper h3 { font-size: 1.4rem; color: var(--mbbs-secondary); }
    .mbbs-wrapper p { margin-bottom: 1.2em; }

    .mbbs-section {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 20px;
        border-radius: var(--mbbs-radius);
    }

    .mbbs-section-alt {
        background-color: var(--mbbs-bg-alt);
    }

    /* Images */
    .mbbs-img-full {
        width: 100%;
        height: auto;
        border-radius: var(--mbbs-radius);
        transition: box-shadow 0.3s ease;
        display: block;
        margin: 20px 0;
        object-fit: cover;
    }
    
    .mbbs-img-square {
        width: 100%;
        height: auto;
        border-radius: var(--mbbs-radius);
        transition: box-shadow 0.3s ease;
        object-fit: cover;
    }

    .mbbs-hover-shadow:hover {
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    /* Grid for 50-50 Layout */
    .mbbs-grid-50 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: center;
        margin: 30px 0;
    }
    @media (min-width: 768px) {
        .mbbs-grid-50 {
            grid-template-columns: 1fr 1fr;
        }
    }

    /* Table of Contents */
    .mbbs-toc {
        background: #fdfbf7;
        border-left: 5px solid var(--mbbs-rare);
        padding: 25px;
        border-radius: var(--mbbs-radius);
        margin: 30px 0;
        transition: box-shadow 0.3s ease;
    }
    .mbbs-toc:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
    .mbbs-toc h3 { margin-top: 0; color: var(--mbbs-primary); }
    .mbbs-toc ul { list-style: none; padding-left: 0; margin: 0; }
    .mbbs-toc ul li { margin-bottom: 10px; }
    .mbbs-toc ul li a {
        color: var(--mbbs-primary);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    .mbbs-toc ul li a:hover { color: var(--mbbs-secondary); }
    .mbbs-toc ul li i { color: var(--mbbs-rare); margin-right: 8px; font-size: 0.9em; }

    /* Tables */
    .mbbs-table-responsive {
        overflow-x: auto;
        margin: 30px 0;
        border-radius: var(--mbbs-radius);
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        transition: box-shadow 0.3s ease;
    }
    .mbbs-table-responsive:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
    
    .mbbs-table {
        width: 100%;
        border-collapse: collapse;
        background: var(--mbbs-bg-light);
        min-width: 600px;
    }
    .mbbs-table th, .mbbs-table td {
        padding: 15px 20px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }
    .mbbs-table th {
        background-color: var(--mbbs-primary);
        color: #fff;
        font-weight: 600;
    }
    .mbbs-table tr:nth-child(even) { background-color: var(--mbbs-bg-alt); }
    .mbbs-table tr:hover { background-color: #f1f8e9; }

    /* Highlights & Quotes */
    .mbbs-tldr {
        background-color: #e6f2eb;
        border-left: 5px solid var(--mbbs-secondary);
        padding: 20px;
        border-radius: var(--mbbs-radius);
        font-weight: 500;
        margin: 25px 0;
    }

    /* Lists */
    .mbbs-wrapper ul:not(.mbbs-toc ul) {
        list-style: none;
        padding-left: 0;
    }
    .mbbs-wrapper ul:not(.mbbs-toc ul) li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 10px;
    }
    .mbbs-wrapper ul:not(.mbbs-toc ul) li::before {
        content: "\f058"; /* FontAwesome check-circle */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: var(--mbbs-secondary);
    }

    /* Call to Action */
    .mbbs-cta {
        background: linear-gradient(135deg, var(--mbbs-primary), #001f3f);
        color: #fff;
        padding: 30px;
        border-radius: var(--mbbs-radius);
        text-align: center;
        margin: 40px 0;
        transition: box-shadow 0.3s ease;
    }
    .mbbs-cta:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.2); }
    .mbbs-cta p { font-size: 1.2rem; margin-bottom: 20px; color: #fff; }
    .mbbs-btn {
        display: inline-block;
        background-color: var(--mbbs-rare);
        color: #fff !important;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 700;
        transition: background 0.3s, transform 0.2s;
        border: none;
        cursor: pointer;
    }
    .mbbs-btn:hover {
        background-color: #8a6200;
        transform: translateY(-2px);
    }

    /* Accordion FAQ */
    .mbbs-faq { margin: 40px 0; }
    .mbbs-accordion {
        background: var(--mbbs-bg-light);
        border: 1px solid #eee;
        border-radius: var(--mbbs-radius);
        margin-bottom: 15px;
        overflow: hidden;
        transition: box-shadow 0.3s ease;
    }
    .mbbs-accordion:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
    .mbbs-accordion-header {
        padding: 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: var(--mbbs-primary);
        background: var(--mbbs-bg-light);
    }
    .mbbs-accordion-header i {
        color: var(--mbbs-secondary);
        transition: transform 0.3s ease;
    }
    .mbbs-accordion-content {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        background: #fdfdfd;
    }
    .mbbs-accordion.active .mbbs-accordion-content {
        padding: 0 20px 20px 20px;
        border-top: 1px solid #eee;
    }
    .mbbs-accordion.active .mbbs-accordion-header i {
        transform: rotate(180deg);
    }
    
    /* Links inside text */
    .mbbs-wrapper a:not(.mbbs-btn):not(.mbbs-toc a) {
        color: var(--mbbs-secondary);
        text-decoration: none;
        font-weight: 600;
    }
    .mbbs-wrapper a:not(.mbbs-btn):not(.mbbs-toc a):hover {
        text-decoration: underline;
    }

    .mbbs-rating i { color: var(--mbbs-rare); }/* End custom CSS */