  /* ================= STICKY STRIP ================= */
  .cf-section-nav-wrap {
    background: #f6ead7;
    border-bottom: 3px solid #c18a4d;
    z-index: 999;
  }

  .cf-section-nav-wrap.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: cfSlideDown 0.3s ease;
  }

  .cf-section-nav {
    max-width: 1320px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 14px 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .cf-section-nav::-webkit-scrollbar {
    display: none;
  }

  .cf-section-link {
    text-decoration: none;
    color: #0b3d2e;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
  }

  .cf-section-link::after {
    content: "|";
    margin-left: 22px;
    color: #c18a4d;
  }

  .cf-section-link:last-child::after {
    display: none;
  }

  .cf-section-link.is-active {
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .cf-section-nav {
      justify-content: flex-start;
    }
  }

  @keyframes cfSlideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
  }

  /* ================= CONTENT SECTIONS ================= */
  .cf-content-section {
    padding: 100px 8%;
  }

  .cf-content-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #0b3d2e;
  }

  .cf-content-section p {
    font-size: 17px;
    color: #555;
    max-width: 900px;
    line-height: 1.8;
  }

  .cf-section-light {
    background: #f9f9f9;
  }
		section {
  scroll-margin-top: 70px; /* height of sticky nav */
}
	