.elementor-1246 .elementor-element.elementor-element-523c748{--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-cd692d5 */:root {
    --fn-primary: #114268;
    --fn-secondary: #795d26;
    --fn-rare: #1b5379;
    --fn-text: #192c27;
    --fn-bg-light: #f8f9fa;
    --fn-border: #e0e6ed;
    --fn-danger-bg: #fff0f0;
    --fn-danger-border: #cc0000;
  }

  /* Main Wrapper */
  #finoda-fo-content {
    font-family: inherit;
    color: var(--fn-text);
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.1rem;
    background: transparent;
  }

  /* Headings */
  #finoda-fo-content h1 {
    color: var(--fn-primary);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.25;
    margin: 1rem 0 1.5rem 0;
  }
  
  #finoda-fo-content h2 {
    color: var(--fn-rare);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    border-bottom: 3px solid var(--fn-secondary);
    padding-bottom: 0.5rem;
    margin: 2.5rem 0 1.25rem 0;
  }

  #finoda-fo-content h3 {
    color: var(--fn-primary);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
  }

  #finoda-fo-content p {
    margin-bottom: 1.25rem;
  }

  /* Links */
  #finoda-fo-content a {
    color: var(--fn-rare);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
  }

  #finoda-fo-content a:hover {
    color: var(--fn-secondary);
    border-bottom: 1px solid var(--fn-secondary);
  }

  /* Sections */
  .fo-section {
    padding: 20px 0;
  }

  /* Images & Figures */
  .fo-figure {
    margin: 2rem 0;
    text-align: center;
  }
  
  .fo-figure img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(17, 66, 104, 0.1);
    display: block;
    margin: 0 auto;
  }

  .fo-figure figcaption {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 10px;
  }

  /* Table of Contents */
  .fo-toc {
    background: linear-gradient(145deg, #ffffff, #f5f7f9);
    border: 1px solid var(--fn-border);
    border-left: 6px solid var(--fn-primary);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  }

  .fo-toc-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fn-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .fo-toc ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  .fo-toc > ul > li {
    margin-bottom: 0.75rem;
  }

  .fo-toc ul ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    border-left: 2px dashed var(--fn-border);
  }
  
  .fo-toc ul ul li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
  }

  .fo-toc ul ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 2px;
    background-color: var(--fn-border);
  }

  .fo-toc a {
    color: var(--fn-text);
    font-weight: 500;
  }
  .fo-toc a:hover {
    color: var(--fn-secondary);
  }

  /* Risk Box */
  .fo-risk-box {
    background-color: var(--fn-danger-bg);
    border-left: 8px solid var(--fn-danger-border);
    padding: 1.5rem;
    border-radius: 4px 8px 8px 4px;
    margin: 2rem 0;
    font-weight: 600;
    color: var(--fn-danger-border);
    box-shadow: 0 4px 12px rgba(204,0,0,0.05);
  }

  /* Lists */
  .fo-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .fo-list li {
    margin-bottom: 0.5rem;
    position: relative;
  }
  .fo-list.bullets {
    list-style: none;
  }
  .fo-list.bullets li::before {
    content: "■";
    color: var(--fn-secondary);
    position: absolute;
    left: -1.2rem;
    top: 2px;
    font-size: 0.8rem;
  }

  /* Table Styling */
  .fo-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }
  .fo-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
  }
  .fo-table th {
    background-color: var(--fn-primary);
    color: #fff;
    padding: 1rem;
    text-align: left;
    font-size: 1.1rem;
  }
  .fo-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--fn-border);
    border-right: 1px solid var(--fn-border);
  }
  .fo-table td:last-child {
    border-right: none;
  }
  .fo-table tr:nth-child(even) {
    background-color: rgba(121, 93, 38, 0.05); /* Very light secondary */
  }

  /* Call to Action Box */
  .fo-cta {
    background: linear-gradient(135deg, var(--fn-primary) 0%, var(--fn-rare) 100%);
    color: #fff;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    box-shadow: 0 15px 30px rgba(17, 66, 104, 0.2);
  }
  .fo-cta p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  .fo-cta .cta-btn {
    display: inline-block;
    background-color: var(--fn-secondary);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s, background 0.3s;
    border: none;
  }
  .fo-cta .cta-btn:hover {
    background-color: #927130;
    transform: translateY(-3px);
    color: #fff;
  }

  /* FAQs Accordion */
  .fo-faq {
    margin-bottom: 1rem;
    border: 1px solid var(--fn-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
  }
  .fo-faq summary {
    background-color: var(--fn-bg-light);
    color: var(--fn-primary);
    padding: 1.25rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
  }
  .fo-faq summary::-webkit-details-marker {
    display: none;
  }
  .fo-faq summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--fn-secondary);
    font-weight: 300;
  }
  .fo-faq[open] summary {
    background-color: var(--fn-rare);
    color: #fff;
  }
  .fo-faq[open] summary::after {
    content: "−";
    color: #fff;
  }
  .fo-faq .faq-content {
    padding: 1.25rem;
    border-top: 1px solid var(--fn-border);
    color: var(--fn-text);
  }

  /* Video Placeholder Box */
  .fo-video-box {
    background: var(--fn-bg-light);
    border: 2px dashed var(--fn-rare);
    border-radius: 8px;
    padding: 3rem 1rem;
    text-align: center;
    margin: 2rem 0;
    color: var(--fn-rare);
    font-weight: 600;
  }

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .fo-cta { padding: 2rem 1rem; }
    .fo-table th, .fo-table td { padding: 0.75rem; font-size: 1rem; }
    .fo-toc { padding: 1.5rem; }
  }/* End custom CSS */