    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    .hero-section {
   
    margin-top: -50px;
}
    a:hover {
        text-decoration:none;
    }
    .site-header {
    
    border-bottom: 0px solid var(--ufg-border);
    position: sticky;
    top: 0;
    z-index: 99;
}
@media (max-width: 640px) {
    .header-inner {
        flex-direction: row;
        align-items: flex-start;
    }
}
    html, body {
      width: 100%;
      overflow-x: hidden;
      font-family: 'Inter', sans-serif;
    }

    body {
      background: #ffffff;
      color: #111111;
    }

    a {
      text-decoration: none;
      transition: 0.3s ease;
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
    }

    /* HEADER */
    .site-header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 9999;
      background: transparent;
      padding: 24px 0;
      transition: all 0.35s ease;
    }

    .site-header.scrolled {
      position: fixed;
      top: 0;
      left: 0;
      background: #ffffff;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      padding: 16px 0;
    }

    .header-inner {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .site-logo {
      display: flex;
      align-items: center;
      position: relative;
      z-index: 10001;
      flex-shrink: 0;
    }

    .site-logo img {
      display: block;
      height: auto;
      max-width: 180px;
      transition: all 0.3s ease;
    }

    .logo-dark {
      display: none !important;
    }

    .site-header.scrolled .logo-white {
      display: none !important;
    }

    .site-header.scrolled .logo-dark {
      display: block !important;
    }

    .desktop-nav {
      flex: 1;
      display: flex;
      justify-content: flex-end;
    }

    .desktop-nav ul {
      display: flex;
      align-items: center;
      gap: 34px;
      flex-wrap: wrap;
    }

    .desktop-nav ul li a {
      color: #ffffff;
      font-size: 14px;
      font-weight: 400;
      line-height: 1;
      white-space: nowrap;
    }

    .site-header.scrolled .desktop-nav ul li a {
      color: #333333;
    }

    .desktop-nav ul li a:hover {
      color: #957544;
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: none;
      background: transparent;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      z-index: 10002;
      padding: 0;
    }

    .menu-toggle span {
      width: 24px;
      height: 2.5px;
      background: #ffffff;
      border-radius: 10px;
      transition: all 0.3s ease;
      display: block;
    }

    .site-header.scrolled .menu-toggle span {
      background: #1D2360;
    }

    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 380px;
      max-width: 88%;
      height: 100vh;
      background: #f7f7f7;
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
      transition: right 0.35s ease;
      z-index: 10000;
      overflow-y: auto;
      padding: 0;
    }

    .mobile-nav.active {
      right: 0;
    }

    .mobile-nav-top {
      height: 104px;
      background: #ffffff;
      position: relative;
    }

    .mobile-nav-close {
      position: absolute;
      top: 28px;
      right: 24px;
      width: 26px;
      height: 26px;
      border: none;
      background: transparent;
      cursor: pointer;
      padding: 0;
    }

    .mobile-nav-close::before,
    .mobile-nav-close::after {
      content: "";
      position: absolute;
      top: 12px;
      left: 4px;
      width: 18px;
      height: 2px;
      background: #1D2360;
      border-radius: 10px;
    }

    .mobile-nav-close::before {
      transform: rotate(45deg);
    }

    .mobile-nav-close::after {
      transform: rotate(-45deg);
    }

    .mobile-nav-inner {
      padding: 28px 24px 30px;
    }

    .mobile-nav ul {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .mobile-nav ul li {
      border-bottom: 1px solid #dddddd;
    }

    .mobile-nav ul li:last-child {
      border-bottom: none;
    }

    .mobile-nav ul li a {
      color: #444444;
      font-size: 18px;
      font-weight: 600;
      line-height: 1.4;
      display: block;
      padding: 18px 0;
    }

    .mobile-nav ul li a:hover {
      color: #1D2360;
    }

    .menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
      opacity: 0;
      visibility: hidden;
      transition: all 0.35s ease;
      z-index: 9998;
    }

    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    body.menu-open {
      overflow: hidden;
    }

    /* HERO */
    .hero-section {
      min-height: 100vh;
      background:
        linear-gradient(rgba(12, 22, 43, 0.58), rgba(12, 22, 43, 0.58)),
        url('https://ufg-consulting.forge99.com/wp-content/uploads/2026/03/banner.png') center center / cover no-repeat;
      display: flex;
      align-items: center;
      padding: 180px 0 110px;
      position: relative;
    }

    .hero-content {
      width: 100%;
      max-width: 1120px;
      color: #ffffff;
    }

    .hero-content h1,
    .hero-content .hero-subtitle,
    .hero-content .hero-text,
    .hero-buttons {
      opacity: 0;
      transform: translateY(28px);
    }

    .hero-content.animate h1 {
      animation: fadeUp 0.8s ease forwards;
      animation-delay: 0.15s;
    }

    .hero-content.animate .hero-subtitle {
      animation: fadeUp 0.8s ease forwards;
      animation-delay: 0.45s;
    }

    .hero-content.animate .hero-text {
      animation: fadeUp 0.8s ease forwards;
      animation-delay: 0.75s;
    }

    .hero-content.animate .hero-buttons {
      animation: fadeUp 0.8s ease forwards;
      animation-delay: 1.05s;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-content h1 {
      color: #ffffff;
      font-size: 45px;
      font-weight: 600;
      line-height: 0.98;
      margin-bottom: 34px;
      font-family: 'Bricolage Grotesque', sans-serif;
      max-width: 860px;
    }

    .hero-subtitle {
      color: #ffffff;
      font-size: 28px;
      font-weight: 500;
      line-height: 1.2;
      margin-bottom: 34px;
      max-width: 980px;
    }

    .hero-text {
      color: rgba(255, 255, 255, 0.92);
      font-size: 18px;
      font-weight: 400;
      line-height: 1.35;
      max-width: 980px;
      margin-bottom: 46px;
    }

    .hero-text p {
      margin-bottom: 26px;
    }

    .hero-text p:last-child {
      margin-bottom: 0;
    }

    .hero-buttons {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
    }

    .hero-btn {
      min-height: 20px;
      padding: 20px 38px;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      font-size: 20px;
      font-weight: 500;
      line-height: 1;
      transition: all 0.3s ease;
    }

    .hero-btn.primary {
      background: #a88245;
      color: #ffffff;
    }

  .hero-btn.primary:hover {
    background: #fff;

    color: #171C61;
}
  .hero-btn.primary:hover svg path {
  fill:#171C61;
    color:#171C61;
  
  }
    .hero-btn.secondary {
      background: rgba(255, 255, 255, 0.03);
      color: #ffffff;
      border: 2px solid rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(3px);
    }

    .hero-btn.secondary:hover {
       background: #fff;

    color: #171C61;
    }

    .hero-btn .arrow {
      font-size: 30px;
      line-height: 1;
      margin-top: -2px;
    }

    /* EASY LAND */
    .easy-land-section {
      padding: 90px 0;
      background: #fff;
      position: relative;
    }

  .easy-land-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    grid-template-columns: unset;
    gap: 60px;
    align-items: start;
}.easy-land-intro-wrap {
    position: relative;
    width: 48%;
}

    .easy-land-content {
      position: sticky;
      top: 120px;
      max-width: 100%;
    }

    .easy-land-content h2,
    .easy-land-content p,
    .easy-land-content .easy-land-btn {
      opacity: 0;
      transform: translateY(24px);
    }

    .easy-land-content.animate h2 {
      animation: fadeUp 0.7s ease forwards;
      animation-delay: 0.10s;
    }

    .easy-land-content.animate p {
      animation: fadeUp 0.7s ease forwards;
      animation-delay: 0.35s;
    }

    .easy-land-content.animate .easy-land-btn {
      animation: fadeUp 0.7s ease forwards;
      animation-delay: 0.60s;
    }

    .easy-land-content h2 {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 40px;
      font-weight: 600;
      line-height: 1.08;
      color: #1D2360;
      margin: 0 0 18px;
      max-width: 100%;
    }

    .easy-land-content p {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.45;
      color: #4A4A4A;
      margin: 0 0 28px;
      max-width: 100%;
    }

    .easy-land-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 56px;
      padding: 16px 22px;
      background: #1D2360;
      color: #ffffff;
      border-radius: 8px;
      font-size: 20px;
      font-weight: 500;
      line-height: 1;
	  border:1px solid #1D2360;
    }

    .easy-land-btn:hover {
     background: #fff;
border:1px solid #171C61 !important;
    color: #171C61;
    }

    .easy-land-arrow {
      font-size: 20px;
      line-height: 1;
    }

    .easy-land-cards {
      display: flex;
      flex-direction: column;
      gap: 34px;
      width: 100%;
     max-width: 48%;
    }
.easy-land-card {
    position: relative;
    min-height: 306px;
    border-radius: unset;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 50px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: unset;
}
    .easy-land-card.card-1 {
      background-image: url('https://ufg-consulting.forge99.com/wp-content/uploads/2026/03/Frame-469.png');
    }

    .easy-land-card.card-2 {
      background-image: url('https://ufg-consulting.forge99.com/wp-content/uploads/2026/03/Residency-PRO-Immigration.png');
    }

    .easy-land-card.card-3 {
      background-image: url('https://ufg-consulting.forge99.com/wp-content/uploads/2026/03/Banking-Payments-Readiness.png');
    }

    .easy-land-card.card-4 {
      background-image: url('https://ufg-consulting.forge99.com/wp-content/uploads/2026/03/Compliance-Tax-Reporting.png');
    }

    .easy-land-card.card-5 {
      background-image: url('https://ufg-consulting.forge99.com/wp-content/uploads/2026/03/Investor-Asset-Coordination.png');
    }

  /*  .easy-land-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.18) 40%,
        rgba(0, 0, 0, 0.72) 100%
      );
      z-index: 1;
    } */

    .easy-land-card-content {
      position: relative;
      z-index: 2;
      max-width: 390px;
    }

 .easy-land-icon {
    margin-bottom: 10px;
    line-height: 0;
    width: auto;
    height: auto;
}

  .easy-land-card-content h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.12;
    color: #ffffff;
    margin: 0 0 10px;
    max-width: 100% !important;
}
    .easy-land-card-content p {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.28;
      color: rgba(255, 255, 255, 0.95);
      margin: 0;
      max-width: 100%;
    }

    /* FOOTER CTA */
    .footer-cta {
      position: relative;
      background: url('https://ufg-consulting.forge99.com/wp-content/uploads/2026/03/footer-bg.png') center center / cover no-repeat;
      min-height: 498px;
      display: flex;
      align-items: center;
    }

    .footer-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 23, 58, 0.40);
    }

    .footer-cta-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 700px;
      padding: 60px 0;
    }

    .footer-cta-content h2 {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 36px;
      font-weight: 600;
      line-height: 100%;
      color: #ffffff;
      margin-bottom: 28px;
      max-width: 670px;
    }

    .footer-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      min-height: 60px;
      padding: 16px 30px;
      background: #957544;
      color: #ffffff;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 500;
      border: 1px solid transparent;
    }

    .footer-cta-btn:hover {
      background: #ffffff;
      border: 1px solid #171C61;
      color: #171C61;
    }

    .footer-cta-btn .arrow {
      font-size: 20px;
      line-height: 1;
      display: inline-block;
      margin-top: -1px;
    }

    /* FOOTER */
    .site-footer {
      background: #070B3A;
      color: #ffffff;
      padding: 56px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1.3fr 1.2fr;
      gap: 40px;
      align-items: start;
    }

    .footer-logo img {
      max-width: 150px;
    }

    .footer-title {
      font-size: 14px;
      font-weight: 400;
      line-height: 30px;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .footer-links a,
    .footer-contact a,
    .footer-contact span,
    .footer-address,
    .footer-copy {
      font-size: 14px;
      font-weight: 400;
      line-height: 30px;
      color: rgba(255, 255, 255, 0.80);
    }

    .footer-links a {
      display: block;
    }

    .footer-links a:hover,
    .footer-contact a:hover {
      color: #ffffff;
    }

    .footer-address {
      line-height: 1.5;
      margin-top: 8px;
      max-width: 230px;
    }

    .footer-social img {
      max-width: 140px;
      margin-bottom: 18px;
    }

    .legal-logo img {
      max-width: 140px;
      margin-top: 8px;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 42px;
    }

    .footer-copy {
      font-size: 11px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.55);
    }

    /* RESPONSIVE */
    @media (max-width: 1399px) {
      .hero-content h1 {
        font-size: 64px;
        max-width: 760px;
      }

      .hero-subtitle {
        font-size: 24px;
        max-width: 880px;
      }

      .hero-btn {
        font-size: 24px;
        min-height: 86px;
        padding: 22px 32px;
      }

      .hero-btn .arrow {
        font-size: 36px;
      }
    }

    @media (max-width: 1199px) {
      .container,
      .header-inner,
      .easy-land-container {
        padding: 0 28px;
      }

      .desktop-nav ul {
        gap: 22px;
      }

      .desktop-nav ul li a {
        font-size: 13px;
      }

      .site-logo img {
        max-width: 160px;
      }

      .hero-content h1 {
        font-size: 40px;
        max-width: 680px;
      }

      .hero-subtitle {
        font-size: 22px;
        max-width: 760px;
      }

      .hero-text {
        font-size: 17px;
        max-width: 860px;
      }

      .hero-btn {
        font-size: 22px;
        min-height: 76px;
        padding: 20px 28px;
      }

      .easy-land-container {
        grid-template-columns: 300px minmax(0, 1fr);
        gap: 40px;
      }

      .easy-land-content h2 {
        font-size: 34px;
        max-width: 290px;
      }

      .easy-land-cards {
        max-width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1.2fr;
      }

      .footer-brand {
        grid-column: span 4;
      }
    }

    @media (max-width: 991px) {
      .site-header {
        padding: 20px 0;
      }

#easyLandContentv2 {
	    padding-top: 0;
}
    .easy-land-container {
        display: block;
        display: flex!important;
        flex-direction: column-reverse !important; 
    }
    .easy-land-content h2,.easy-land-content p,.easy-land-content h2 {

        max-width: 100% !important;
    }
	.easy-land-btn {

    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    border: 1px solid #1D2360;
}
      .site-header.scrolled {
        padding: 14px 0;
      }

      .header-inner {
        padding: 0 24px;
      }

      .desktop-nav {
        display: none;
      }

      .menu-toggle {
        display: flex;
      }

      .site-logo img {
        max-width: 150px;
      }

      .hero-section {
        min-height: auto;
        padding: 150px 0 80px;
      }

      .hero-content h1 {
        font-size: 46px;
        max-width: 560px;
      }

      .hero-subtitle {
        font-size: 20px;
      }

      .hero-text {
        font-size: 16px;
      }

      .hero-buttons {
        gap: 16px;
      }

      .hero-btn {
        font-size: 18px;
        min-height: 62px;
        padding: 18px 24px;
        border-radius: 12px;
      }

      .hero-btn .arrow {
        font-size: 28px;
      }

      .easy-land-section {
        padding: 64px 0;
      }

      .easy-land-container {
        padding: 0 24px;
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .easy-land-content {
        position: relative;
        top: 0;
        max-width: 100%;
      }

      .easy-land-content h2 {
        font-size: 32px;
        max-width: 480px;
      }

      .easy-land-content p {
        max-width: 460px;
      }

      .easy-land-cards {
        max-width: 100%;
        gap: 24px;
      }

         .easy-land-card {
        min-height: 320px;
        border-radius: 31px;
    }

      .footer-cta {
        min-height: 420px;
      }

      .footer-cta-content h2 {
        font-size: 30px;
        max-width: 630px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 28px;
      }

      .footer-brand {
        grid-column: span 2;
      }
    }

    @media (max-width: 767px) {
      .container,
      .header-inner,
      .easy-land-container {
        padding: 0 16px;
      }
   .easy-land-container {
        display: block;
        display: flex!important;
        flex-direction: column-reverse !important; 
    }
	.easy-land-intro-wrap .h3 {
  
    font-size: 18px;
    font-weight: 700;
;
}
    .easy-land-btn {
        min-height: 50px;
        padding: 14px 18px;
        font-size: 12px;
        max-width: 280px !important;
    }
	
	 #easyLandSection2   .easy-land-card {
        min-height: 250px;
        border-radius: 20px;
        padding: 40px 15px;
    }
      .site-header {
        padding: 18px 0;
      }

      .site-header.scrolled {
        padding: 12px 0;
      }

      .site-logo img {
        max-width: 130px;
      }

      .menu-toggle {
        width: 42px;
        height: 42px;
      }

      .menu-toggle span {
        width: 22px;
      }

      .mobile-nav {
        width: 380px;
        max-width: 96%;
      }

      .mobile-nav-top {
        height: 104px;
      }

      .mobile-nav-inner {
        padding: 22px 24px 30px;
      }

      .mobile-nav ul li a {
        font-size: 16px;
        padding: 16px 0;
      }

      .hero-section {
        background:
          linear-gradient(rgba(12, 22, 43, 0.58), rgba(12, 22, 43, 0.58)),
          url('https://ufg-consulting.forge99.com/wp-content/uploads/2026/03/corp.png') center center / cover no-repeat;
        align-items: flex-start;
        padding: 118px 0 58px;
      }

      .hero-content h1 {
        font-size: 34px;
        line-height: 0.98;
        max-width: 360px;
        margin-bottom: 18px;
      }

      .hero-subtitle {
        font-size: 18px;
        line-height: 1.15;
        max-width: 420px;
        margin-bottom: 22px;
      }

      .hero-text {
        font-size: 16px;
        line-height: 1.25;
        max-width: 100%;
        margin-bottom: 30px;
      }

      .hero-text p {
        margin-bottom: 18px;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
      }

      .hero-btn {
        width: 100%;
        min-height: 72px;
        font-size: 18px;
        padding: 18px 22px;
        border-radius: 14px;
        justify-content: center;
      }

      .hero-btn .arrow {
        font-size: 30px;
      }

      .easy-land-section {
        padding: 48px 0;
      }

   .easy-land-container {
        gap: 20px;
        flex-direction: column;
    }
.easy-land-intro-wrap {
    position: relative;
    width: 100%;
}
      .easy-land-content h2 {
        font-size: 24px;
        line-height: 1.15;
        margin-bottom: 12px;
    max-width: 100% !important;
      }
	  

      .easy-land-content p {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 20px;
        max-width: 260px;
		    max-width: 100% !important;
      }

      .easy-land-btn {
        min-height: 50px;
        padding: 14px 18px;
        font-size: 14px;
           max-width: 280px !important;
      }

      .easy-land-cards {
        gap: 14px;
      }

      .easy-land-card {
        min-height: 250px;
        border-radius: 16px;
        padding: 20px 16px 18px;
      }

      .easy-land-icon {
        margin-bottom: 8px;
        width: auto;
        height: auto;
      }

      .easy-land-card-content h3 {
        font-size: 22px;
        line-height: 1.15;
        margin-bottom: 8px;
        max-width: 250px;
      }

      .easy-land-card-content p {
        font-size: 18px;
        line-height: 1.22;
        max-width: 210px;
      }

      .footer-cta {
        min-height: 360px;
        align-items: center;
      }

      .footer-cta-content {
        padding: 40px 0;
      }

      .footer-cta-content h2 {
        font-size: 22px;
        max-width: 100%;
        line-height: 1.15;
        margin-bottom: 18px;
      }

      .footer-cta-btn {
        min-height: 50px;
        padding: 14px 22px;
        font-size: 14px;
        gap: 10px;
      }

      .site-footer {
        padding: 40px 0 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 18px;
      }

      .footer-brand {
        grid-column: span 2;
      }

      .footer-title,
      .footer-links a,
      .footer-contact a,
      .footer-contact span,
      .footer-address {
        font-size: 12px;
        line-height: 1.8;
      }

      .footer-logo img {
        max-width: 120px;
      }

      .footer-social img,
      .legal-logo img {
        max-width: 120px;
      }

      .footer-bottom {
        margin-top: 28px;
      }
    }

    @media (max-width: 480px) {
      .container,
      .header-inner,
      .easy-land-container {
        padding: 0 14px;
      }

      .site-logo img {
        max-width: 120px;
      }

      .mobile-nav {
        width: 100%;
        max-width: 100%;
      }

      .mobile-nav-top {
        height: 106px;
      }

      .mobile-nav-close {
        top: 28px;
        right: 24px;
      }

      .hero-section {
        min-height: auto;
        padding: 150px 0 110px;
      }

      .hero-content h1 {
        font-size: 33px;
        max-width: 290px;
      }

      .hero-subtitle {
        font-size: 16px;
        max-width: 320px;
      }

      .hero-text {
        font-size: 15px;
      }

      .hero-btn {
        min-height: auto;
        font-size: 17px;
        border-radius: 14px;
        width: 280px;
      }

      .hero-btn .arrow {
        font-size: 28px;
      }

      .easy-land-content h2 {
        font-size: 22px;
        max-width: 250px;
      }

      .easy-land-content p {
        max-width: 240px;
      }

      .easy-land-btn {
        width: 100%;
        max-width: 240px;
      }

     .easy-land-card {
        min-height: 320px;
        border-radius: 31px;
        padding: 40px 15px;
    }

          .easy-land-card-content h3 {
        max-width: 100%;
    }

    .easy-land-card-content p {
        max-width: 100%;
    }
      .footer-cta {
        min-height: 270px;
      }

      .footer-cta-content h2 {
        font-size: 20px;
        max-width: 240px;
      }

      .footer-cta-btn {
        min-height: 44px;
        padding: 12px 18px;
        font-size: 12px;
        border-radius: 8px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .footer-brand {
        grid-column: span 1;
      }

      .footer-title,
      .footer-links a,
      .footer-contact a,
      .footer-contact span,
      .footer-address {
        font-size: 12px;
        line-height: 1.8;
      }

      .footer-copy {
        font-size: 10px;
      }
    }
	



/* animation only when section is in view */
.easy-land-content.in-view h2 {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.10s;
}

.easy-land-content.in-view p {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.35s;
}

.easy-land-content.in-view .easy-land-btn {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.60s;
}
 
.ufg-custom-sections {
  font-family: "Bricolage Grotesque", sans-serif;
  color: #171c61;
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-divider {
    border: 0;
    border-top: 1.5px solid #171c61;
    width: 50%;
    margin: 60px auto 60px auto;
}
.ufg-custom-sections .section-divider {
  border: 0;
  border-top: 1.5px solid #171c61;
  width: 50%;
  margin: 60px auto 60px auto;
}
 
.ufg-custom-sections .section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.08;
    color: #1D2360;
  margin: 0 0 100px 0;
    max-width: 100%;

}
 

.why-ufg {
  padding: 0 0 80px 0;
}
 
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
 
.feature-item {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}
 
.feature-item .icon {
  font-size: 2.2rem;
  color: #957544;
  margin-bottom: 18px;
  display: block;
}
 
h3 {
  max-width: 160px;

}
.feature-item h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #957544;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

 
.feature-item p {
  font-family: "Inter", sans-serif;
  color: #3f3f3f;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  max-width: 200px;
}
 
.engagement-highlights {
  padding: 0 0 80px 0;
}
 
.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
 
.highlight-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  display: flex;
  flex-direction: column;
}
 
.highlight-card .image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  background-color: #ddd;
}
 
.highlight-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}
 
.highlight-card .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: background 0.3s ease;
  border-radius: 8px;
}
 
.highlight-card:hover .image-wrapper::after {
  background: rgba(0, 0, 0, 0);
}

.highlight-card .image-placeholder {
  filter: brightness(0.6);
  transition: filter 0.3s ease;
}
 
 
.highlight-card:hover .image-placeholder {
  filter: brightness(1);
}
 
.highlight-card p {
  font-family: "Inter", sans-serif;
  color: #3f3f3f;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
 

.button-container {
  margin-top: 40px;
}
 
.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1.5px solid #171c61;
  border-radius: 8px;
  text-decoration: none;
  color: #171c61;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.25s ease, color 0.25s ease;
}
 
.view-btn:hover {
  background-color: #171c61;
  color: #ffffff;
}
 

@media (max-width: 900px) {
  .feature-item {
    flex: 1 1 calc(50% - 30px);
  }
  .highlight-card {
    flex: 1 1 calc(50% - 24px);
  }
}
 
@media (max-width: 600px) {
  .ufg-custom-sections {
    padding: 0 20px;
  }
  .feature-item {
    flex: 1 1 100%;
  }
  .highlight-card {
    flex: 1 1 100%;
  }
  .ufg-custom-sections .section-title {
    font-size: 1.6rem;
  }
  h3 {
    max-width: 100%;
}
.feature-item p {
    font-family: "Inter", sans-serif;
    color: #3f3f3f;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
}
.ufg-custom-sections .section-title {
 
    margin: 0 0 50px 0;
    max-width: 100%;
}
}

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    .hero-section {
   
    margin-top: -50px;
}
    a:hover {
        text-decoration:none;
    }
    .site-header {
    
    border-bottom: 0px solid var(--ufg-border);
    position: sticky;
    top: 0;
    z-index: 99;
}
ol {
        padding-left: 20px;
        padding-bottom:30px;
}
ol  li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    color: #1E1E1E;
    margin: 0 0 10px;
    max-width: 100%;
}
@media (max-width: 640px) {
    .header-inner {
        flex-direction: row;
        align-items: flex-start;
    }
}
    html, body {
      width: 100%;
      overflow-x: hidden;
      font-family: 'Inter', sans-serif;
    }

    body {
      background: #ffffff;
      color: #111111;
    }

    a {
      text-decoration: none;
      transition: 0.3s ease;
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
    }

    /* HEADER */
    .site-header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 9999;
      background: transparent;
      padding: 24px 0;
      transition: all 0.35s ease;
    }

    .site-header.scrolled {
      position: fixed;
      top: 0;
      left: 0;
      background: #ffffff;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      padding: 16px 0;
    }

    .header-inner {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .site-logo {
      display: flex;
      align-items: center;
      position: relative;
      z-index: 10001;
      flex-shrink: 0;
    }

    .site-logo img {
      display: block;
      height: auto;
      max-width: 180px;
      transition: all 0.3s ease;
    }

    .logo-dark {
      display: none !important;
    }

    .site-header.scrolled .logo-white {
      display: none !important;
    }

    .site-header.scrolled .logo-dark {
      display: block !important;
    }

    .desktop-nav {
      flex: 1;
      display: flex;
      justify-content: flex-end;
    }

    .desktop-nav ul {
      display: flex;
      align-items: center;
      gap: 34px;
      flex-wrap: wrap;
    }

    .desktop-nav ul li a {
      color: #ffffff;
      font-size: 14px;
      font-weight: 400;
      line-height: 1;
      white-space: nowrap;
    }

    .site-header.scrolled .desktop-nav ul li a {
      color: #333333;
    }

    .desktop-nav ul li a:hover {
      color: #957544;
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: none;
      background: transparent;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      z-index: 10002;
      padding: 0;
    }

    .menu-toggle span {
      width: 24px;
      height: 2.5px;
      background: #ffffff;
      border-radius: 10px;
      transition: all 0.3s ease;
      display: block;
    }

    .site-header.scrolled .menu-toggle span {
      background: #1D2360;
    }

    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 380px;
      max-width: 88%;
      height: 100vh;
      background: #f7f7f7;
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
      transition: right 0.35s ease;
      z-index: 10000;
      overflow-y: auto;
      padding: 0;
    }

    .mobile-nav.active {
      right: 0;
    }

    .mobile-nav-top {
      height: 104px;
      background: #ffffff;
      position: relative;
    }

    .mobile-nav-close {
      position: absolute;
      top: 28px;
      right: 24px;
      width: 26px;
      height: 26px;
      border: none;
      background: transparent;
      cursor: pointer;
      padding: 0;
    }

    .mobile-nav-close::before,
    .mobile-nav-close::after {
      content: "";
      position: absolute;
      top: 12px;
      left: 4px;
      width: 18px;
      height: 2px;
      background: #1D2360;
      border-radius: 10px;
    }

    .mobile-nav-close::before {
      transform: rotate(45deg);
    }

    .mobile-nav-close::after {
      transform: rotate(-45deg);
    }

    .mobile-nav-inner {
      padding: 28px 24px 30px;
    }

    .mobile-nav ul {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .mobile-nav ul li {
      border-bottom: 1px solid #dddddd;
    }

    .mobile-nav ul li:last-child {
      border-bottom: none;
    }

    .mobile-nav ul li a {
      color: #444444;
      font-size: 18px;
      font-weight: 600;
      line-height: 1.4;
      display: block;
      padding: 18px 0;
    }

    .mobile-nav ul li a:hover {
      color: #1D2360;
    }

    .menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
      opacity: 0;
      visibility: hidden;
      transition: all 0.35s ease;
      z-index: 9998;
    }

    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    body.menu-open {
      overflow: hidden;
    }

    /* HERO */
    .hero-section {
      min-height: 100vh;
      background:
        linear-gradient(rgba(12, 22, 43, 0.58), rgba(12, 22, 43, 0.58)),
        url('https://ufg-consulting.forge99.com/wp-content/uploads/2026/03/banner.png') center center / cover no-repeat;
      display: flex;
      align-items: center;
      padding: 180px 0 110px;
      position: relative;
    }

    .hero-content {
      width: 100%;
      max-width: 1120px;
      color: #ffffff;
    }

    .hero-content h1,
    .hero-content .hero-subtitle,
    .hero-content .hero-text,
    .hero-buttons {
      opacity: 0;
      transform: translateY(28px);
    }

    .hero-content.animate h1 {
      animation: fadeUp 0.8s ease forwards;
      animation-delay: 0.15s;
    }

    .hero-content.animate .hero-subtitle {
      animation: fadeUp 0.8s ease forwards;
      animation-delay: 0.45s;
    }

    .hero-content.animate .hero-text {
      animation: fadeUp 0.8s ease forwards;
      animation-delay: 0.75s;
    }

    .hero-content.animate .hero-buttons {
      animation: fadeUp 0.8s ease forwards;
      animation-delay: 1.05s;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-content h1 {
      color: #ffffff;
      font-size: 45px;
      font-weight: 600;
      line-height: 0.98;
      margin-bottom: 34px;
      font-family: 'Bricolage Grotesque', sans-serif;
      max-width: 860px;
    }

    .hero-subtitle {
      color: #ffffff;
      font-size: 28px;
      font-weight: 500;
      line-height: 1.2;
      margin-bottom: 34px;
      max-width: 980px;
    }

    .hero-text {
      color: rgba(255, 255, 255, 0.92);
      font-size: 18px;
      font-weight: 400;
      line-height: 1.35;
      max-width: 980px;
      margin-bottom: 46px;
    }

    .hero-text p {
      margin-bottom: 26px;
    }

    .hero-text p:last-child {
      margin-bottom: 0;
    }

    .hero-buttons {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
    }

    .hero-btn {
      min-height: 20px;
      padding: 20px 38px;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      font-size: 20px;
      font-weight: 500;
      line-height: 1;
      transition: all 0.3s ease;
    }

    .hero-btn.primary {
      background: #a88245;
      color: #ffffff;
    }

  .hero-btn.primary:hover {
    background: #fff;

    color: #171C61;
}
  .hero-btn.primary:hover svg path {
  fill:#171C61;
    color:#171C61;
  
  }
    .hero-btn.secondary {
      background: rgba(255, 255, 255, 0.03);
      color: #ffffff;
      border: 2px solid rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(3px);
    }

    .hero-btn.secondary:hover {
       background: #fff;

    color: #171C61;
    }

    .hero-btn .arrow {
      font-size: 30px;
      line-height: 1;
      margin-top: -2px;
    }

    /* EASY LAND */
    .easy-land-section {
      padding: 90px 0;
      background: #fff;
      position: relative;
    }

  .easy-land-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    grid-template-columns: unset;
    gap: 60px;
    align-items: start;
}.easy-land-intro-wrap {
    position: relative;
    width: 48%;
}

    .easy-land-content {
      position: sticky;
      top: 120px;
      max-width: 100%;
    }

    .easy-land-content h2,
    .easy-land-content p,
    .easy-land-content .easy-land-btn {
      opacity: 0;
      transform: translateY(24px);
    }

    .easy-land-content.animate h2 {
      animation: fadeUp 0.7s ease forwards;
      animation-delay: 0.10s;
    }

    .easy-land-content.animate p {
      animation: fadeUp 0.7s ease forwards;
      animation-delay: 0.35s;
    }

    .easy-land-content.animate .easy-land-btn {
      animation: fadeUp 0.7s ease forwards;
      animation-delay: 0.60s;
    }

    .easy-land-content h2 {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 40px;
      font-weight: 600;
      line-height: 1.08;
      color: #1D2360;
      margin: 0 0 18px;
      max-width: 100%;
    }

    .easy-land-content p {
        font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    color: #1E1E1E;
    margin: 0 0 28px;
    max-width: 100%;
    }

    .easy-land-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 56px;
      padding: 16px 22px;
      background: #1D2360;
      color: #ffffff;
      border-radius: 8px;
      font-size: 20px;
      font-weight: 500;
      line-height: 1;
	  border:1px solid #1D2360;
    }

    .easy-land-btn:hover {
     background: #fff;
border:1px solid #171C61 !important;
    color: #171C61;
    }

    .easy-land-arrow {
      font-size: 20px;
      line-height: 1;
    }

    .easy-land-cards {
      display: flex;
      flex-direction: column;
      gap: 34px;
      width: 100%;
     max-width: 48%;
    }
.easy-land-card {
    border-radius: 20px;
    position: relative;
    min-height: 306px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 50px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: unset;
}
    .easy-land-card.card-1 {
      background-image: url('https://ufg-consulting.forge99.com/wp-content/uploads/2026/03/Frame-469.png');
    }

    .easy-land-card.card-2 {
      background-image: url('https://ufg-consulting.forge99.com/wp-content/uploads/2026/03/Residency-PRO-Immigration.png');
    }

    .easy-land-card.card-3 {
      background-image: url('https://ufg-consulting.forge99.com/wp-content/uploads/2026/03/Banking-Payments-Readiness.png');
    }

    .easy-land-card.card-4 {
      background-image: url('https://ufg-consulting.forge99.com/wp-content/uploads/2026/03/Compliance-Tax-Reporting.png');
    }

    .easy-land-card.card-5 {
      background-image: url('https://ufg-consulting.forge99.com/wp-content/uploads/2026/03/Investor-Asset-Coordination.png');
    }

  /*  .easy-land-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.18) 40%,
        rgba(0, 0, 0, 0.72) 100%
      );
      z-index: 1;
    } */

    .easy-land-card-content {
      position: relative;
      z-index: 2;
      max-width: 390px;
    }

 .easy-land-icon {
    margin-bottom: 10px;
    line-height: 0;
    width: auto;
    height: auto;
}

  .easy-land-card-content h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.12;
    color: #ffffff;
    margin: 0 0 10px;
    max-width: 100% !important;
}
    .easy-land-card-content p {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.28;
      color: rgba(255, 255, 255, 0.95);
      margin: 0;
      max-width: 100%;
    }

    /* FOOTER CTA */
    .footer-cta {
      position: relative;
      background: url('https://ufg-consulting.forge99.com/wp-content/uploads/2026/03/footer-bg.png') center center / cover no-repeat;
      min-height: 498px;
      display: flex;
      align-items: center;
    }

    .footer-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 23, 58, 0.40);
    }

    .footer-cta-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 700px;
      padding: 60px 0;
    }

    .footer-cta-content h2 {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 36px;
      font-weight: 600;
      line-height: 100%;
      color: #ffffff;
      margin-bottom: 28px;
      max-width: 670px;
    }

    .footer-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      min-height: 60px;
      padding: 16px 30px;
      background: #957544;
      color: #ffffff;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 500;
      border: 1px solid transparent;
    }

    .footer-cta-btn:hover {
      background: #ffffff;
      border: 1px solid #171C61;
      color: #171C61;
    }

    .footer-cta-btn .arrow {
      font-size: 20px;
      line-height: 1;
      display: inline-block;
      margin-top: -1px;
    }

    /* FOOTER */
    .site-footer {
      background: #070B3A;
      color: #ffffff;
      padding: 56px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1.3fr 1.2fr;
      gap: 40px;
      align-items: start;
    }

    .footer-logo img {
      max-width: 150px;
    }

    .footer-title {
      font-size: 14px;
      font-weight: 400;
      line-height: 30px;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .footer-links a,
    .footer-contact a,
    .footer-contact span,
    .footer-address,
    .footer-copy {
      font-size: 14px;
      font-weight: 400;
      line-height: 30px;
      color: rgba(255, 255, 255, 0.80);
    }

    .footer-links a {
      display: block;
    }

    .footer-links a:hover,
    .footer-contact a:hover {
      color: #ffffff;
    }

    .footer-address {
      line-height: 1.5;
      margin-top: 8px;
      max-width: 230px;
    }

    .footer-social img {
      max-width: 140px;
      margin-bottom: 18px;
    }

    .legal-logo img {
      max-width: 140px;
      margin-top: 8px;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 42px;
    }

    .footer-copy {
      font-size: 11px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.55);
    }

    /* RESPONSIVE */
    @media (max-width: 1399px) {
      .hero-content h1 {
        font-size: 64px;
        max-width: 760px;
      }

      .hero-subtitle {
        font-size: 24px;
        max-width: 880px;
      }

      .hero-btn {
        font-size: 24px;
        min-height: 86px;
        padding: 22px 32px;
      }

      .hero-btn .arrow {
        font-size: 36px;
      }
    }

    @media (max-width: 1199px) {
      .container,
      .header-inner,
      .easy-land-container {
        padding: 0 28px;
      }

      .desktop-nav ul {
        gap: 22px;
      }

      .desktop-nav ul li a {
        font-size: 13px;
      }

      .site-logo img {
        max-width: 160px;
      }

      .hero-content h1 {
        font-size: 40px;
        max-width: 680px;
      }

      .hero-subtitle {
        font-size: 22px;
        max-width: 760px;
      }

      .hero-text {
        font-size: 17px;
        max-width: 860px;
      }

      .hero-btn {
        font-size: 22px;
        min-height: 76px;
        padding: 20px 28px;
      }

      .easy-land-container {
        grid-template-columns: 300px minmax(0, 1fr);
        gap: 40px;
      }

      .easy-land-content h2 {
        font-size: 34px;
        max-width: 290px;
      }

      .easy-land-cards {
        max-width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1.2fr;
      }

      .footer-brand {
        grid-column: span 4;
      }
    }

    @media (max-width: 991px) {
      .site-header {
        padding: 20px 0;
      }

      .site-header.scrolled {
        padding: 14px 0;
      }

      .header-inner {
        padding: 0 24px;
      }

      .desktop-nav {
        display: none;
      }

      .menu-toggle {
        display: flex;
      }

      .site-logo img {
        max-width: 150px;
      }

      .hero-section {
        min-height: auto;
        padding: 150px 0 80px;
      }

      .hero-content h1 {
        font-size: 46px;
        max-width: 560px;
      }

      .hero-subtitle {
        font-size: 20px;
      }

      .hero-text {
        font-size: 16px;
      }

      .hero-buttons {
        gap: 16px;
      }

      .hero-btn {
        font-size: 18px;
        min-height: 62px;
        padding: 18px 24px;
        border-radius: 12px;
      }

      .hero-btn .arrow {
        font-size: 28px;
      }

      .easy-land-section {
        padding: 64px 0;
      }

      .easy-land-container {
        padding: 0 24px;
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .easy-land-content {
        position: relative;
        top: 0;
        max-width: 100%;
      }

      .easy-land-content h2 {
        font-size: 32px;
        max-width: 480px;
      }

      .easy-land-content p {
        max-width: 460px;
      }

      .easy-land-cards {
        max-width: 100%;
        gap: 24px;
      }

         .easy-land-card {
        min-height: 320px;
        border-radius: 31px;
    }

      .footer-cta {
        min-height: 420px;
      }

      .footer-cta-content h2 {
        font-size: 30px;
        max-width: 630px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 28px;
      }

      .footer-brand {
        grid-column: span 2;
      }
    }

    @media (max-width: 767px) {
      .container,
      .header-inner,
      .easy-land-container {
        padding: 0 16px;
      }

      .site-header {
        padding: 18px 0;
      }

      .site-header.scrolled {
        padding: 12px 0;
      }

      .site-logo img {
        max-width: 130px;
      }

      .menu-toggle {
        width: 42px;
        height: 42px;
      }

      .menu-toggle span {
        width: 22px;
      }

      .mobile-nav {
        width: 380px;
        max-width: 96%;
      }

      .mobile-nav-top {
        height: 104px;
      }

      .mobile-nav-inner {
        padding: 22px 24px 30px;
      }

      .mobile-nav ul li a {
        font-size: 16px;
        padding: 16px 0;
      }

      .hero-section {
        background:
          linear-gradient(rgba(12, 22, 43, 0.58), rgba(12, 22, 43, 0.58)),
          url('https://ufg-consulting.forge99.com/wp-content/uploads/2026/03/corp.png') center center / cover no-repeat;
        align-items: flex-start;
        padding: 118px 0 58px;
      }

      .hero-content h1 {
        font-size: 34px;
        line-height: 0.98;
        max-width: 360px;
        margin-bottom: 18px;
      }

      .hero-subtitle {
        font-size: 18px;
        line-height: 1.15;
        max-width: 420px;
        margin-bottom: 22px;
      }

      .hero-text {
        font-size: 16px;
        line-height: 1.25;
        max-width: 100%;
        margin-bottom: 30px;
      }

      .hero-text p {
        margin-bottom: 18px;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
      }

      .hero-btn {
        width: 100%;
        min-height: 72px;
        font-size: 18px;
        padding: 18px 22px;
        border-radius: 14px;
        justify-content: center;
      }

      .hero-btn .arrow {
        font-size: 30px;
      }

      .easy-land-section {
        padding: 48px 0;
      }

   .easy-land-container {
        gap: 20px;
        flex-direction: column;
    }
.easy-land-intro-wrap {
    position: relative;
    width: 100%;
}
      .easy-land-content h2 {
        font-size: 24px;
        line-height: 1.15;
        margin-bottom: 12px;
    max-width: 100% !important;
      }
	  

      .easy-land-content p {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 20px;
        max-width: 260px;
		    max-width: 100% !important;
      }

      .easy-land-btn {
        min-height: 50px;
        padding: 14px 18px;
        font-size: 14px;
           max-width: 280px !important;
      }

      .easy-land-cards {
        gap: 14px;
      }

      .easy-land-card {
        min-height: 250px;
        border-radius: 16px;
        padding: 20px 16px 18px;
      }

      .easy-land-icon {
        margin-bottom: 8px;
        width: auto;
        height: auto;
      }

      .easy-land-card-content h3 {
        font-size: 22px;
        line-height: 1.15;
        margin-bottom: 8px;
        max-width: 250px;
      }

      .easy-land-card-content p {
        font-size: 18px;
        line-height: 1.22;
        max-width: 210px;
      }

      .footer-cta {
        min-height: 360px;
        align-items: center;
      }

      .footer-cta-content {
        padding: 40px 0;
      }

      .footer-cta-content h2 {
        font-size: 22px;
        max-width: 100%;
        line-height: 1.15;
        margin-bottom: 18px;
      }

      .footer-cta-btn {
        min-height: 50px;
        padding: 14px 22px;
        font-size: 14px;
        gap: 10px;
      }

      .site-footer {
        padding: 40px 0 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 18px;
      }

      .footer-brand {
        grid-column: span 2;
      }

      .footer-title,
      .footer-links a,
      .footer-contact a,
      .footer-contact span,
      .footer-address {
        font-size: 12px;
        line-height: 1.8;
      }

      .footer-logo img {
        max-width: 120px;
      }

      .footer-social img,
      .legal-logo img {
        max-width: 120px;
      }

      .footer-bottom {
        margin-top: 28px;
      }
    }

    @media (max-width: 480px) {
      .container,
      .header-inner,
      .easy-land-container {
        padding: 0 14px;
      }

      .site-logo img {
        max-width: 120px;
      }

      .mobile-nav {
        width: 100%;
        max-width: 100%;
      }

      .mobile-nav-top {
        height: 106px;
      }

      .mobile-nav-close {
        top: 28px;
        right: 24px;
      }

      .hero-section {
        min-height: auto;
        padding: 150px 0 110px;
      }

      .hero-content h1 {
        font-size: 33px;
        max-width: 290px;
      }

      .hero-subtitle {
        font-size: 16px;
        max-width: 320px;
      }

      .hero-text {
        font-size: 15px;
      }

      .hero-btn {
        min-height: auto;
        font-size: 17px;
        border-radius: 14px;
        width: 280px;
      }

      .hero-btn .arrow {
        font-size: 28px;
      }

      .easy-land-content h2 {
        font-size: 22px;
        max-width: 250px;
      }

      .easy-land-content p {
        max-width: 240px;
      }

      .easy-land-btn {
        width: 100%;
        max-width: 240px;
      }

     .easy-land-card {
        min-height: 360px;
        border-radius: 20px;
        padding: 40px 15px;
    }

          .easy-land-card-content h3 {
        max-width: 100%;
    }

    .easy-land-card-content p {
        max-width: 100%;
    }
      .footer-cta {
        min-height: 270px;
      }

      .footer-cta-content h2 {
        font-size: 20px;
        max-width: 240px;
      }

      .footer-cta-btn {
        min-height: 44px;
        padding: 12px 18px;
        font-size: 12px;
        border-radius: 8px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .footer-brand {
        grid-column: span 1;
      }

      .footer-title,
      .footer-links a,
      .footer-contact a,
      .footer-contact span,
      .footer-address {
        font-size: 12px;
        line-height: 1.8;
      }

      .footer-copy {
        font-size: 10px;
      }
    }
	



/* animation only when section is in view */
.easy-land-content.in-view h2 {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.10s;
}

.easy-land-content.in-view p {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.35s;
}

.easy-land-content.in-view .easy-land-btn {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.60s;
}
 
.ufg-custom-sections {
  font-family: "Bricolage Grotesque", sans-serif;
  color: #171c61;
  padding: 0 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-divider {
    border: 0;
    border-top: 1.5px solid #171c61;
    width: 50%;
    margin: 60px auto 60px auto;
}
.ufg-custom-sections .section-divider {
  border: 0;
  border-top: 1.5px solid #171c61;
  width: 50%;
  margin: 60px auto 60px auto;
}
 
.ufg-custom-sections .section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.08;
    color: #1D2360;
  margin: 0 0 100px 0;
    max-width: 100%;

}
 

.why-ufg {
  padding: 0 0 80px 0;
}
 
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
 
.feature-item {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}
 
.feature-item .icon {
  font-size: 2.2rem;
  color: #957544;
  margin-bottom: 18px;
  display: block;
}
 
h3 {
  max-width: 100%;

}
.easy-land-intro-wrap .h3 {
    margin: 0 0 28px;
    font-size: 24px;
	
    font-weight: 700;

    color: #171C61;
} 

feature-item h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #957544;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.feature-item h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #957544;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

 
.feature-item p {
  font-family: "Inter", sans-serif;
  color: #3f3f3f;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  max-width: 200px;
}
 
.engagement-highlights {
  padding: 0 0 80px 0;
}
 
.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
 
.highlight-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  display: flex;
  flex-direction: column;
}
 
.highlight-card .image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  background-color: #ddd;
}
 
.highlight-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}
 
.highlight-card .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
    background: rgb(0 0 0 / 0%);
  transition: background 0.3s ease;
  border-radius: 8px;
}
 
.highlight-card:hover .image-wrapper::after {
  background: rgba(0, 0, 0, 0);
}

.highlight-card .image-placeholder {
  filter: brightness(0.6);
  transition: filter 0.3s ease;
}
 
 
.highlight-card:hover .image-placeholder {
  filter: brightness(1);
}
 
.highlight-card p {
  font-family: "Inter", sans-serif;
  color: #3f3f3f;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
 

.button-container {
  margin-top: 40px;
}
 
.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1.5px solid #171c61;
  border-radius: 8px;
  text-decoration: none;
  color: #171c61;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.25s ease, color 0.25s ease;
}
 
.view-btn:hover {
  background-color: #171c61;
  color: #ffffff;
}
 

@media (max-width: 900px) {
  .feature-item {
    flex: 1 1 calc(50% - 30px);
  }
  .highlight-card {
    flex: 1 1 calc(50% - 24px);
  }
}
 
@media (max-width: 600px) {
  .ufg-custom-sections {
    padding: 0 20px;
  }
  .feature-item {
    flex: 1 1 100%;
  }
  .highlight-card {
    flex: 1 1 100%;
  }
  .ufg-custom-sections .section-title {
    font-size: 1.6rem;
  }
  h3 {
    max-width: 100%;
}
.feature-item p {
    font-family: "Inter", sans-serif;
    color: #3f3f3f;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
}
.ufg-custom-sections .section-title {
 
    margin: 0 0 50px 0;
    max-width: 100%;
}
}