.elementor-2010 .elementor-element.elementor-element-108aef0{--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 container, class: .elementor-element-108aef0 */.medigo-wrapper {
    font-family: inherit;
    color: #333333;
    line-height: 1.7;
    font-size: 16px;
    background-color: #fcfcfc; /* Medical-type white background */
}

/* Base Section Styling */
.medigo-wrapper section {
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f4f8;
    transition: all 0.3s ease;
}

.medigo-wrapper section:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Typography */
.medigo-wrapper h1 {
    color: #1f3d9d; /* Secondary Color */
    font-size: 2.2rem;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.medigo-wrapper h2 {
    color: #1f3d9d; /* Secondary Color */
    font-size: 1.8rem;
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 2px solid rgba(31, 61, 157, 0.1);
    padding-bottom: 10px;
}

.medigo-wrapper h3 {
    color: #f22283; /* Primary Color */
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.medigo-wrapper p {
    margin-bottom: 15px;
}

.medigo-wrapper a {
    color: #f22283;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.medigo-wrapper a:hover {
    color: #1f3d9d;
    text-decoration: underline;
}

/* Images */
.medigo-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
    object-fit: contain;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Lists */
.medigo-wrapper ul {
    list-style: none;
    padding-left: 0;
}

.medigo-wrapper ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.medigo-wrapper ul li::before {
    content: '\f058'; /* FontAwesome check-circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #119809; /* Rare Color */
    font-size: 1.1rem;
}

.medigo-treatments-list p {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 3px solid #f22283;
}
.medigo-treatments-list strong {
    color: #1f3d9d;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
    margin-top: 20px;
}

/* Table of Contents */
.medigo-toc {
    background-color: #f8faff;
    border-left: 4px solid #f22283;
}
.medigo-toc summary {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1f3d9d;
    cursor: pointer;
    outline: none;
    list-style: none;
    display: flex;
    align-items: center;
}
.medigo-toc summary::-webkit-details-marker {
    display: none;
}
.medigo-toc summary i {
    margin-right: 10px;
    color: #f22283;
    transition: transform 0.3s;
}
.medigo-toc[open] summary i {
    transform: rotate(90deg);
}
.medigo-toc ul {
    margin-top: 15px;
}
.medigo-toc ul li::before {
    content: '\f105'; /* Angle right */
    color: #f22283;
}

/* Responsive Table */
.medigo-table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}
.medigo-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.medigo-table th {
    background-color: #1f3d9d;
    color: #ffffff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}
.medigo-table th:first-child { border-top-left-radius: 10px; }
.medigo-table th:last-child { border-top-right-radius: 10px; }
.medigo-table td {
    padding: 15px;
    border-bottom: 1px solid #eeeeee;
}
.medigo-table tr:nth-child(even) {
    background-color: #fcfcfc;
}
.medigo-table tr:hover td {
    background-color: #f4f7f6;
}

/* FAQ Accordion */
.medigo-faq-item {
    margin-bottom: 15px;
    border: 1px solid #eef2f9;
    border-radius: 10px;
    overflow: hidden;
}
.medigo-faq-question {
    width: 100%;
    background-color: #ffffff;
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    color: #1f3d9d;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}
.medigo-faq-question:hover {
    background-color: #f8faff;
}
.medigo-faq-question i {
    color: #f22283;
    transition: transform 0.3s ease;
}
.medigo-faq-item.active .medigo-faq-question i {
    transform: rotate(180deg);
}
.medigo-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fafbfc;
}
.medigo-faq-answer-inner {
    padding: 20px;
    color: #444;
    border-top: 1px solid #eef2f9;
}

/* Call to Action */
.medigo-cta-section {
    background: linear-gradient(135deg, #1f3d9d 0%, #172c73 100%);
    color: #ffffff;
    text-align: center;
}
.medigo-cta-section h2 {
    color: #ffffff;
    border: none;
    margin-bottom: 10px;
}
.medigo-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}
.medigo-btn {
    display: inline-block;
    background-color: #119809; /* Rare Color - Green for WhatsApp */
    color: #ffffff !important;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(17, 152, 9, 0.4);
    transition: all 0.3s ease;
}
.medigo-btn:hover {
    background-color: #0e7d07;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 152, 9, 0.6);
    color: #ffffff;
}
.medigo-disclaimer {
    font-size: 0.85rem;
    color: #777;
    margin-top: 15px;
    text-align: center;
    font-style: italic;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}
.medigo-disclaimer:hover {
    box-shadow: none;
}/* End custom CSS */