.elementor-1892 .elementor-element.elementor-element-b95291e{--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-a560a88 */.medigo-wrapper {
  font-family: inherit;
  color: #222;
  line-height: 1.8;
  background: #ffffff;
  max-width: 100%;
}

/* Base Section Styling with Hover Shadow */
.medigo-section {
  width: 100%;
  padding: 20px;
  border-radius: 15px;
  background: #ffffff;
  margin-bottom: 25px;
  border: 1px solid #f3f4f6;
  transition: box-shadow 0.3s ease;
}
.medigo-section:hover {
  box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
}

/* Typography & Headings */
.medigo-h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1f3d9d; /* Secondary */
  margin-bottom: 15px;
}
.medigo-subtitle {
  font-size: 1.2rem;
  color: #f22283; /* Primary */
  font-weight: 600;
  margin-bottom: 15px;
}
.medigo-h2 {
  font-size: 1.7rem;
  color: #1f3d9d; /* Secondary */
  margin: 30px 0 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f22283; /* Primary */
}
.medigo-h3 {
  font-size: 1.3rem;
  color: #f22283; /* Primary */
  margin: 25px 0 12px;
  font-weight: 600;
}
.medigo-h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.medigo-wrapper p { margin-bottom: 16px; }
.medigo-wrapper a { color: #f22283; text-decoration: underline; font-weight: 500; }
.medigo-wrapper a:hover { color: #1f3d9d; }

/* Table of Contents (Collapsed by default) */
.medigo-toc {
  background-color: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
}
.medigo-toc summary {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f3d9d;
  cursor: pointer;
  list-style-type: none;
  display: flex;
  align-items: center;
  outline: none;
}
.medigo-toc summary::-webkit-details-marker { display: none; }
.medigo-toc summary i { margin-right: 10px; color: #f22283; }
.medigo-toc ul {
  margin-top: 15px;
  padding-left: 20px;
  list-style: none;
}
.medigo-toc ul li { margin-bottom: 10px; }
.medigo-toc ul li a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}
.medigo-toc ul li a:hover { color: #f22283; }

/* Images */
.medigo-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.medigo-img-caption {
  font-size: 0.85rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 25px;
  font-style: italic;
}

/* Highlight Boxes / Callouts */
.medigo-key-points {
  background: #1f3d9d; /* Secondary */
  color: #ffffff;
}
.medigo-key-points h3 { color: #ffffff; }
.medigo-key-points ul li { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 8px 0; }
.medigo-key-points ul li strong { color: #f22283; }

.medigo-callout {
  border-radius: 15px;
  padding: 20px;
  margin: 25px 0;
}
.medigo-callout-teal { background: #f0f4f8; border-left: 5px solid #1f3d9d; } /* Secondary based */
.medigo-callout-teal h4 { color: #1f3d9d; }
.medigo-callout-red { background: #fff0f5; border-left: 5px solid #f22283; } /* Primary based */
.medigo-callout-red h4 { color: #f22283; }
.medigo-callout-green { background: #f2fcf1; border-left: 5px solid #119809; } /* Rare based */
.medigo-callout-green h4 { color: #119809; }

/* Tables Responsive */
.medigo-table-wrap {
  overflow-x: auto;
  margin: 25px 0;
  border-radius: 15px;
  border: 1px solid #e5e7eb;
}
.medigo-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.medigo-table thead { background: #1f3d9d; color: #ffffff; }
.medigo-table th { padding: 12px 15px; text-align: left; font-weight: 600; }
.medigo-table tbody tr { border-bottom: 1px solid #e5e7eb; transition: background 0.2s; }
.medigo-table tbody tr:hover { background: #f9fafb; }
.medigo-table td { padding: 12px 15px; vertical-align: top; }
.saving-badge {
  background: #119809; /* Rare Color */
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
}
.hospital-priority {
  background: #f22283; /* Primary Color */
  color: white;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 8px;
  vertical-align: middle;
}

/* Disease Cards Grid */
.medigo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 25px 0;
}
.medigo-card {
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  padding: 20px;
  background: #fff;
  border-top: 4px solid #1f3d9d;
  transition: box-shadow 0.3s ease;
}
.medigo-card:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.medigo-card.rare-card { border-top-color: #f22283; }

/* Process Steps List */
.medigo-steps { list-style: none; padding: 0; counter-reset: steps-counter; margin: 25px 0; }
.medigo-steps li {
  counter-increment: steps-counter;
  display: flex;
  gap: 20px;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 15px;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  align-items: flex-start;
  transition: box-shadow 0.3s ease;
}
.medigo-steps li:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.08); }
.medigo-steps li::before {
  content: counter(steps-counter);
  background: #f22283;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* CTA Buttons & Boxes */
.medigo-cta-box {
  background: #1f3d9d;
  color: #ffffff;
  text-align: center;
}
.medigo-cta-box h3 { color: #ffffff; margin-top: 0; margin-bottom: 15px;}
.medigo-cta-box p { color: rgba(255,255,255,0.9); margin-bottom: 25px;}
.medigo-btn-wrap { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.medigo-btn-primary {
  background: #f22283; /* Primary */
  color: #ffffff !important;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.medigo-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 34, 131, 0.4);
}
.medigo-btn-secondary {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid #ffffff;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
}
.medigo-btn-secondary:hover {
  background: #ffffff;
  color: #1f3d9d !important;
}

/* FAQ Accordion */
.medigo-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #fff;
}
.medigo-faq-q {
  padding: 20px;
  font-weight: 700;
  color: #1f3d9d;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  transition: background 0.3s ease;
}
.medigo-faq-q:hover { background: #f0f4f8; }
.medigo-faq-icon {
  color: #f22283;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.medigo-faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.medigo-faq-item.active .medigo-faq-a {
  padding: 20px;
  max-height: 500px;
  border-top: 1px solid #e5e7eb;
}
.medigo-faq-item.active .medigo-faq-icon {
  transform: rotate(180deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .medigo-h1 { font-size: 1.8rem; }
  .medigo-h2 { font-size: 1.5rem; }
  .medigo-btn-wrap { flex-direction: column; }
  .medigo-steps li { flex-direction: column; gap: 10px; }
}/* End custom CSS */