.elementor-2198 .elementor-element.elementor-element-f4c9ad4{--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-bd23989 */.medigo-profile-container {
        --primary: #f22283;
        --secondary: #1f3d9d;
        --rare: #119809;
        --bg-light: #f8fcfd; /* Medical-type white/blue tint */
        --text-dark: #222222;
        --text-white: #ffffff;
        --radius: 15px;
        --padding: 20px;
        
        font-family: inherit; /* Inherit WordPress theme font */
        color: var(--text-dark);
        line-height: 1.6;
        background-color: var(--bg-light);
        padding: var(--padding);
        box-sizing: border-box;
        width: 100%;
    }

    /* Section Styling */
    .medigo-profile-container .mg-section {
        width: 100%;
        padding: var(--padding);
        border-radius: var(--radius);
        background-color: var(--text-white);
        margin-bottom: 25px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        box-sizing: border-box;
    }

    .medigo-profile-container .mg-section:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }

    /* Typography */
    .medigo-profile-container h1 { 
        color: var(--secondary); 
        margin-top: 0; 
        margin-bottom: 10px; 
        font-size: 2.2rem;
        font-weight: 700;
    }
    .medigo-profile-container h2 { 
        color: var(--secondary); 
        border-bottom: 3px solid var(--primary); 
        padding-bottom: 8px; 
        margin-top: 0; 
        display: inline-block; 
        margin-bottom: 20px;
        font-size: 1.6rem;
    }
    .medigo-profile-container h3 { 
        color: var(--primary); 
        font-size: 1.15rem; 
        margin-bottom: 20px;
        font-weight: 600;
        line-height: 1.4;
    }
    .medigo-profile-container p { margin-bottom: 15px; }
    .medigo-profile-container a { color: var(--secondary); text-decoration: none; font-weight: 600; transition: color 0.2s;}
    .medigo-profile-container a:hover { color: var(--primary); }

    /* Red Highlighter for Missing Info */
    .mg-red-highlight {
        background-color: #ffeaea;
        color: #d90000;
        font-weight: 700;
        padding: 12px 18px;
        border: 2px dashed #d90000;
        border-radius: 8px;
        margin: 15px 0;
        display: inline-block;
        font-size: 0.95rem;
    }

    /* CTA Button */
    .drAppointmentBTN {
        background-color: var(--primary);
        color: var(--text-white) !important;
        padding: 12px 28px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        display: inline-block;
        cursor: pointer;
        transition: background-color 0.3s, transform 0.2s;
        border: none;
        text-transform: uppercase;
        font-size: 0.95rem;
        box-shadow: 0 4px 6px rgba(242, 34, 131, 0.3);
    }
    .drAppointmentBTN:hover {
        background-color: var(--secondary);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(31, 61, 157, 0.3);
    }

    /* AEO Blockquote */
    .mg-aeo-block {
        background-color: #eaf1fa;
        border-left: 5px solid var(--secondary);
        padding: 15px 20px;
        border-radius: 0 8px 8px 0;
        font-style: italic;
        margin-bottom: 20px;
    }

    /* Grid Layout for Hero Section */
    .mg-hero-grid {
        display: flex;
        gap: 35px;
        align-items: flex-start;
    }
    .mg-hero-image {
        flex: 0 0 320px;
    }
    .mg-hero-image img {
        width: 100%;
        height: auto;
        border-radius: var(--radius);
        object-fit: cover;
        box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    }
    .mg-hero-content {
        flex: 1;
    }

    /* List Styles */
    .mg-list { list-style: none; padding-left: 0; margin-bottom: 20px;}
    .mg-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
    }
    .mg-list li::before {
        content: '\f058'; /* Check-circle icon */
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        color: var(--rare);
        position: absolute;
        left: 0;
        top: 3px;
        font-size: 1.1rem;
    }

    /* Table of Contents */
    .mg-toc-container details {
        background: #fff;
        border: 1px solid #e0e6ed;
        border-radius: 8px;
        padding: 15px;
    }
    .mg-toc-container summary {
        font-weight: bold;
        color: var(--secondary);
        cursor: pointer;
        outline: none;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .mg-toc-container ul {
        margin-top: 15px;
        padding-left: 25px;
        list-style-type: disc;
    }
    .mg-toc-container ul li { margin-bottom: 8px; }

    /* FAQ Accordion */
    .mg-faq-item {
        margin-bottom: 15px;
        border: 1px solid #e0e6ed;
        border-radius: 8px;
        overflow: hidden;
    }
    .mg-faq-question {
        width: 100%;
        background: #fdfdfd;
        border: none;
        padding: 18px 20px;
        text-align: left;
        font-weight: 700;
        color: var(--secondary);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.3s;
        font-size: 1.05rem;
        font-family: inherit;
    }
    .mg-faq-question:hover { background: #f0f4fa; }
    .mg-faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        background: var(--text-white);
    }
    .mg-faq-item.active .mg-faq-answer {
        padding: 15px 20px;
        max-height: 800px;
        border-top: 1px solid #eee;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .mg-hero-grid { flex-direction: column; }
        .mg-hero-image { flex: 1 1 100%; max-width: 100%; margin: 0 auto; text-align: center; }
        .medigo-profile-container h1 { font-size: 1.8rem; }
        .medigo-profile-container h2 { font-size: 1.4rem; }
        .drAppointmentBTN { width: 100%; text-align: center; }
    }/* End custom CSS */