.elementor-1882 .elementor-element.elementor-element-ebda9de{--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;}.elementor-1882 .elementor-element.elementor-element-5ae2302{--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-ebda9de */.medigo-wrapper {
    font-family: inherit;
    color: #333;
    line-height: 1.7;
    width: 100%;
    box-sizing: border-box;
  }
  .medigo-wrapper * {
    box-sizing: border-box;
  }
  
  /* Section Styling */
  .medigo-section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #f0f4f8;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  .medigo-section:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }

  /* Typography */
  .medigo-wrapper h1, .medigo-wrapper h2, .medigo-wrapper h3, .medigo-wrapper h4 {
    color: #1f3d9d; /* Secondary Color */
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
  }
  .medigo-wrapper h1 { font-size: 2.2em; line-height: 1.3; }
  .medigo-wrapper h2 { font-size: 1.8em; margin-top: 20px; padding-bottom: 10px; border-bottom: 2px solid #f4f7fb; }
  .medigo-wrapper h3 { font-size: 1.4em; color: #f22283; /* Primary Color */ margin-top: 20px; }
  .medigo-wrapper p { margin-bottom: 15px; }
  .medigo-wrapper strong { color: #111; }

  /* Images */
  .medigo-img-container {
    text-align: center;
    margin: 25px 0;
  }
  .medigo-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }
  .medigo-caption {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    margin-top: 10px;
    display: block;
  }

  /* Quick Summary Quote */
  .medigo-quote {
    background-color: #fdf3f7;
    border-left: 5px solid #f22283;
    padding: 20px;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    margin: 20px 0;
    font-size: 1.05em;
  }

  /* Table of Contents */
  .medigo-toc {
    background-color: #f4f7fb;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
  }
  .medigo-toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #1f3d9d;
    font-size: 1.2em;
    margin: 0;
  }
  .medigo-toc-content {
    display: none;
    margin-top: 15px;
  }
  .medigo-toc-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
  }
  .medigo-toc-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  .medigo-toc-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
  }
  .medigo-toc-list li::before {
    content: "\f105"; /* FontAwesome angle-right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #f22283;
  }
  .medigo-toc-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
  }
  .medigo-toc-list a:hover {
    color: #f22283;
    text-decoration: underline;
  }

  /* Responsive Tables */
  .medigo-table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
  }
  .medigo-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: #fff;
  }
  .medigo-table th {
    background-color: #1f3d9d;
    color: #ffffff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
  }
  .medigo-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f4f8;
    color: #444;
  }
  .medigo-table tr:nth-child(even) {
    background-color: #f9fbfd;
  }
  .medigo-table tr:hover td {
    background-color: #fdf3f7;
  }

  /* Lists */
  .medigo-list {
    list-style: none;
    padding-left: 0;
  }
  .medigo-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
  }
  .medigo-list li::before {
    content: "\f058"; /* FontAwesome check-circle */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #119809; /* Rare Color */
    font-size: 1.2em;
  }

  /* Step by Step Area */
  .medigo-step {
    padding: 20px;
    border-radius: 15px;
    background-color: #f9fbfd;
    border-left: 5px solid #1f3d9d;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .medigo-step:hover {
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
  }
  .medigo-step strong {
    color: #f22283;
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
  }

  /* FAQ Accordion */
  .medigo-accordion {
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fff;
  }
  .medigo-accordion-header {
    background-color: #f4f7fb;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 700;
    color: #1f3d9d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
  }
  .medigo-accordion-header:hover {
    background-color: #e2e8f0;
  }
  .medigo-accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .medigo-accordion-content.active {
    padding: 20px;
    max-height: 1500px; /* arbitrary high number for expansion */
  }

  /* Buttons / CTAs */
  .medigo-cta-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 35px 0;
  }
  .medigo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 15px;
    background-color: #f22283;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(242, 34, 131, 0.3);
  }
  .medigo-btn i {
    margin-right: 10px;
    font-size: 1.2em;
  }
  .medigo-btn:hover {
    background-color: #1f3d9d;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
  }
  .medigo-btn-whatsapp {
    background-color: #119809;
    box-shadow: 0 4px 6px rgba(17, 152, 9, 0.3);
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @media (max-width: 768px) {
    .medigo-wrapper h1 { font-size: 1.8em; }
    .medigo-wrapper h2 { font-size: 1.5em; }
    .medigo-btn { width: 100%; }
    .medigo-section { padding: 15px; }
  }/* End custom CSS */