.elementor-1303 .elementor-element.elementor-element-76f4fee{--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-9b0b28e */:root {
    --finoda-primary: #114268;
    --finoda-secondary: #795d26;
    --finoda-rare: #1b5379;
    --finoda-text: #192c27;
    --finoda-bg: #fdfdfd;
  }

  .finoda-blog-wrapper {
    font-family: inherit;
    color: var(--finoda-text);
    line-height: 1.8;
    font-size: 1.125rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: transparent;
  }

  /* Headings */
  .finoda-blog-wrapper h1, 
  .finoda-blog-wrapper h2, 
  .finoda-blog-wrapper h3 {
    font-family: inherit;
    color: var(--finoda-primary);
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .finoda-blog-wrapper h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .finoda-blog-wrapper h2 {
    font-size: 1.875rem;
    border-bottom: 2px solid var(--finoda-secondary);
    padding-bottom: 0.5rem;
    margin-top: 1rem;
    display: inline-block;
  }

  .finoda-blog-wrapper h3 {
    font-size: 1.4rem;
    color: var(--finoda-rare);
    margin-top: 2rem;
  }

  /* Sections */
  .finoda-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 24px rgba(17, 66, 104, 0.04);
    border: 1px solid rgba(17, 66, 104, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .finoda-section:hover {
    box-shadow: 0 8px 32px rgba(17, 66, 104, 0.08);
  }

  /* Content Text */
  .finoda-blog-wrapper p {
    margin-bottom: 1.5rem;
    color: var(--finoda-text);
  }

  .finoda-blog-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
  }

  .finoda-blog-wrapper li {
    margin-bottom: 0.5rem;
  }

  .finoda-blog-wrapper a {
    color: var(--finoda-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--finoda-secondary);
    transition: all 0.3s ease;
  }

  .finoda-blog-wrapper a:hover {
    color: var(--finoda-secondary);
    border-bottom-color: var(--finoda-primary);
  }

  /* Images */
  .finoda-image-container {
    margin: 2rem 0;
    text-align: center;
  }

  .finoda-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(17, 66, 104, 0.1);
  }

  .finoda-img-caption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.75rem;
    font-style: italic;
  }

  /* Hero Specific */
  .finoda-hero-img {
    margin-bottom: 2rem;
    width: 100%;
  }

  /* Blockquotes / Call to action areas */
  .finoda-cta-box {
    background: linear-gradient(90deg, rgba(27, 83, 121, 0.06) 0%, rgba(27, 83, 121, 0.02) 100%);
    border-left: 4px solid var(--finoda-secondary);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Video Wrapper */
  .finoda-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(17, 66, 104, 0.1);
    margin: 2rem 0;
  }
  
  .finoda-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }

  /* Table of Contents */
  .finoda-toc {
    background: #ffffff;
    border: 1px solid rgba(121, 93, 38, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 4px 12px rgba(121, 93, 38, 0.05);
  }

  .finoda-toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--finoda-primary);
    font-size: 1.25rem;
  }

  .finoda-toc-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: var(--finoda-secondary);
  }

  .finoda-toc-icon.active {
    transform: rotate(180deg);
  }

  .finoda-toc-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
  }

  .finoda-toc-list ul {
    list-style: none !important;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
  }

  .finoda-toc-list li {
    margin-bottom: 0.75rem;
  }

  .finoda-toc-list a {
    color: var(--finoda-text);
    border: none;
    font-weight: 500;
    font-size: 1rem;
    display: inline-block;
  }
  
  .finoda-toc-list a:hover {
    color: var(--finoda-secondary);
    padding-left: 5px;
  }
  
  .toc-inner-padding {
      padding-top: 1rem;
  }

  /* FAQ Accordion */
  .finoda-faq-container {
    margin-top: 1.5rem;
  }

  .finoda-faq-item {
    border-bottom: 1px solid rgba(17, 66, 104, 0.1);
    margin-bottom: 1rem;
  }

  .finoda-faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--finoda-primary);
    padding: 1rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: color 0.3s;
  }
  
  .finoda-faq-question:hover {
      color: var(--finoda-secondary);
  }

  .finoda-faq-icon {
    color: var(--finoda-secondary);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
  }

  .finoda-faq-item.active .finoda-faq-icon {
    transform: rotate(45deg);
  }

  .finoda-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }

  .finoda-faq-answer-inner {
    padding-bottom: 1.5rem;
    color: var(--finoda-text);
  }

  /* Responsive styling */
  @media (max-width: 768px) {
    .finoda-section {
      padding: 1.5rem;
    }
    .finoda-blog-wrapper h1 {
      font-size: 2rem;
    }
    .finoda-blog-wrapper h2 {
      font-size: 1.5rem;
    }
    .finoda-blog-wrapper h3 {
      font-size: 1.25rem;
    }
    .finoda-cta-box {
      flex-direction: column;
      align-items: flex-start;
    }
  }/* End custom CSS */