.elementor-1242 .elementor-element.elementor-element-6884073{--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-a219cfa */:root {
    --fin-primary: #114268;
    --fin-secondary: #795d26;
    --fin-rare: #1b5379;
    --fin-text: #192c27;
    --fin-bg: #ffffff;
    --fin-bg-alt: #f8fafc;
  }

  /* Main Wrapper */
  .finoda-content-wrapper {
    font-family: inherit; /* Uses default WordPress theme font */
    color: var(--fin-text);
    background-color: var(--fin-bg);
    background-image: radial-gradient(rgba(27, 83, 121, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    line-height: 1.7;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
  }

  /* Typography */
  .finoda-content-wrapper h1, 
  .finoda-content-wrapper h2, 
  .finoda-content-wrapper h3 {
    color: var(--fin-primary);
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
  }

  .finoda-content-wrapper h1 { font-size: 2.2rem; line-height: 1.3; margin-top: 0; }
  .finoda-content-wrapper h2 { font-size: 1.8rem; border-bottom: 2px solid rgba(121, 93, 38, 0.2); padding-bottom: 8px; }
  .finoda-content-wrapper h3 { font-size: 1.4rem; color: var(--fin-rare); }
  .finoda-content-wrapper p { margin-bottom: 1.2em; font-size: 1.05rem; }
  .finoda-content-wrapper strong { color: var(--fin-primary); }

  /* Links */
  .finoda-content-wrapper a {
    color: var(--fin-secondary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--fin-secondary);
    transition: all 0.3s ease;
  }
  .finoda-content-wrapper a:hover {
    color: var(--fin-primary);
    border-bottom: 1px solid var(--fin-primary);
  }

  /* Section Styling */
  .finoda-section {
    background: var(--fin-bg);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(17, 66, 104, 0.04);
    border: 1px solid rgba(17, 66, 104, 0.08);
  }

  /* Images */
  .finoda-content-wrapper figure {
    margin: 2em 0;
    text-align: center;
  }
  .finoda-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(17, 66, 104, 0.12);
  }
  .finoda-content-wrapper figcaption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--fin-rare);
    font-style: italic;
  }

  /* Callout Blockquotes (Internal Links) */
  .finoda-content-wrapper blockquote {
    background: var(--fin-bg-alt);
    border-left: 4px solid var(--fin-secondary);
    padding: 16px 20px;
    margin: 1.5em 0;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .finoda-content-wrapper blockquote::before {
    content: "🔗";
    font-size: 1.2rem;
  }
  .finoda-content-wrapper blockquote p { margin: 0; }

  /* Table of Contents */
  .finoda-toc {
    background: var(--fin-primary);
    color: #fff;
    padding: 24px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(17, 66, 104, 0.15);
  }
  .finoda-toc-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
  }
  .finoda-toc ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  .finoda-toc ul ul { padding-left: 20px; margin-top: 8px; border-left: 1px solid rgba(255,255,255,0.2); margin-left: 10px; }
  .finoda-toc li { margin-bottom: 10px; }
  .finoda-toc a {
    color: #e0e7ed;
    border-bottom: none;
    font-weight: 500;
    font-size: 0.95rem;
  }
  .finoda-toc a:hover { color: #fff; text-decoration: underline; }

  /* Tables */
  .finoda-table-wrapper { overflow-x: auto; margin: 24px 0; }
  .finoda-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(17, 66, 104, 0.05);
  }
  .finoda-table th, .finoda-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(17, 66, 104, 0.1);
  }
  .finoda-table th { background: var(--fin-primary); color: #fff; font-weight: 600; }
  .finoda-table tr:last-child td { border-bottom: none; }
  .finoda-table tr:hover td { background: var(--fin-bg-alt); }

  /* Step by Step List */
  .finoda-steps { padding-left: 0; list-style: none; counter-reset: fin-step; }
  .finoda-steps li {
    position: relative;
    padding-left: 48px;
    margin-bottom: 24px;
  }
  .finoda-steps li::before {
    counter-increment: fin-step;
    content: counter(fin-step);
    position: absolute;
    left: 0;
    top: -2px;
    background: var(--fin-secondary);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
  }

  /* Video Placeholder */
  .finoda-video-placeholder {
    background: var(--fin-primary);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(17, 66, 104, 0.2);
  }
  .finoda-video-placeholder::before {
    content: "";
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(121,93,38,0.3) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
  }
  .finoda-play-icon { width: 64px; height: 64px; fill: var(--fin-secondary); margin-bottom: 16px; cursor: pointer; transition: transform 0.3s; }
  .finoda-video-placeholder:hover .finoda-play-icon { transform: scale(1.1); }
  .finoda-video-title { display: block; font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
  .finoda-video-sub { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

  /* FAQ Accordion */
  .finoda-faq-container { margin-top: 20px; }
  .finoda-faq-item {
    background: #fff;
    border: 1px solid rgba(17, 66, 104, 0.1);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
  }
  .finoda-faq-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--fin-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    font-family: inherit;
  }
  .finoda-faq-header:hover { background: var(--fin-bg-alt); }
  .finoda-faq-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
  }
  .finoda-faq-icon::before, .finoda-faq-icon::after {
    content: "";
    position: absolute;
    background: var(--fin-secondary);
    transition: transform 0.3s ease;
  }
  .finoda-faq-icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
  .finoda-faq-icon::after { top: 0; left: 9px; width: 2px; height: 20px; }
  .finoda-faq-header.active .finoda-faq-icon::after { transform: rotate(90deg); opacity: 0; }
  .finoda-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--fin-bg-alt);
  }
  .finoda-faq-content-inner { padding: 0 24px 24px 24px; font-size: 1rem; color: var(--fin-text); }

  /* Responsive */
  @media (max-width: 768px) {
    .finoda-section { padding: 20px; }
    .finoda-content-wrapper h1 { font-size: 1.8rem; }
    .finoda-content-wrapper h2 { font-size: 1.5rem; }
    .finoda-table th, .finoda-table td { padding: 12px 10px; font-size: 0.9rem; }
    .finoda-steps li { padding-left: 40px; }
    .finoda-steps li::before { width: 28px; height: 28px; font-size: 0.8rem; }
  }/* End custom CSS */