.elementor-2224 .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 */:root {
    --primary-color: #f22283;
    --secondary-color: #1f3d9d;
    --rare-color: #119809;
    --text-color: #333333;
    --bg-medical: #ffffff;
    --border-color: #e0e6ed;
    --shadow-hover: 0 10px 20px rgba(0,0,0,0.1);
  }

  /* General Section Styling */
  .mg-section {
    width: 100%;
    padding: 20px;
    margin-bottom: 25px;
    background-color: var(--bg-medical);
    border-radius: 15px;
    box-sizing: border-box;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    color: var(--text-color);
    font-family: inherit; /* Adopts WordPress theme font */
  }

  .mg-section:hover {
    box-shadow: var(--shadow-hover);
  }

  /* Typography */
  .mg-section h1 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .mg-section h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    display: inline-block;
  }

  .mg-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .mg-section p, .mg-section li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .mg-section a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 500;
  }

  .mg-section a:hover {
    color: var(--primary-color);
  }

  /* Highlight Missing Information */
  .highlight-red {
    background-color: #ffe6e6;
    color: #d90000;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    border: 1px solid #d90000;
    display: inline-block;
    margin: 5px 0;
  }

  /* Hero Layout */
  .mg-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
  }

  .mg-hero-img {
    flex: 1 1 300px;
    max-width: 350px;
  }

  .mg-hero-img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }

  .mg-hero-content {
    flex: 2 1 400px;
  }

  .mg-aeo-snippet {
    background-color: #f8faff;
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    margin-top: 15px;
  }

  /* Table of Contents */
  .mg-toc-container {
    background-color: #f1f5fa;
    border: 1px solid var(--border-color);
  }
  
  .mg-toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
  }

  .mg-toc-header i {
    color: var(--primary-color);
  }

  .mg-toc-list {
    display: none; /* Collapsed by default */
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
  }

  .mg-toc-list li {
    margin-bottom: 8px;
  }

  .mg-toc-list a {
    text-decoration: none;
    color: var(--secondary-color);
  }
  
  .mg-toc-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    transition: 0.3s;
  }

  /* Lists inside content */
  .mg-content-list {
    list-style-type: none;
    padding-left: 0;
  }

  .mg-content-list li {
    position: relative;
    padding-left: 25px;
  }

  .mg-content-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--rare-color);
  }

  /* CTA Button */
  .drAppointmentBTN {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(242, 34, 131, 0.3);
  }

  .drAppointmentBTN:hover {
    background-color: #c9186b !important;
    transform: translateY(-2px);
  }

  /* FAQ Accordion */
  .mg-faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
  }

  .mg-faq-btn {
    width: 100%;
    text-align: left;
    background-color: #f8faff;
    color: var(--secondary-color);
    padding: 15px 20px;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    font-family: inherit;
  }

  .mg-faq-btn:hover {
    background-color: #edf2f9;
  }

  .mg-faq-btn i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
  }

  .mg-faq-btn.active i {
    transform: rotate(180deg);
  }

  .mg-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #ffffff;
  }

  .mg-faq-content p {
    padding: 15px 20px;
    margin: 0;
  }

  /* Contact Box */
  .mg-contact-box {
    background-color: rgba(17, 152, 9, 0.05);
    border-left: 4px solid var(--rare-color);
    padding: 15px;
    border-radius: 0 10px 10px 0;
    margin-top: 15px;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .mg-hero {
      flex-direction: column;
      text-align: center;
    }
    .mg-aeo-snippet {
      text-align: left;
    }
    .mg-section h1 {
      font-size: 1.8rem;
    }
  }/* End custom CSS */