:root {
      --navy: #071a35;
      --navy-2: #102b4b;
      --maroon: #5a1025;
      --maroon-dark: #420b1b;
      --gold: #b18a3c;
      --gold-light: #d0b36a;
      --green: #4f8f59;
      --light: #f5f4f1;
      --lighter: #fafaf8;
      --text: #1d2630;
      --muted: #66717d;
      --white: #ffffff;
      --border: #e1e0dc;
      --max-width: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI",
                   Roboto, Helvetica, Arial, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(100% - 48px, var(--max-width));
      margin: 0 auto;
    }

    /* =========================
       HEADER
    ========================= */

    .header {
      position: absolute;
      inset: 0 0 auto;
      z-index: 10;
      padding: 18px 0;
      background: var(--white);
      box-shadow: 0 2px 14px rgba(7,26,53,.08);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
    }

    .logo {
      display: block;
      line-height: 0;
    }

    .logo img {
      width: 245px;
      height: auto;
      max-width: 100%;
    }

    .header .logo img {
      opacity: 1;
    }

    .header-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 22px;
      border-radius: 3px;
      background: var(--gold);
      color: var(--white);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: .25s ease;
    }

    .header-cta:hover {
      background: var(--white);
      color: var(--maroon);
    }

    /* =========================
       HERO
    ========================= */

    .hero {
      min-height: 760px;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      background:
        linear-gradient(90deg,
          rgba(4, 17, 35, .96) 0%,
          rgba(7, 26, 53, .86) 42%,
          rgba(7, 26, 53, .28) 100%),
        url("images/banner-new.jpg")
        center / cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0,0,0,.16),
        transparent 55%,
        rgba(0,0,0,.48)
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 720px;
      padding-top: 70px;
    }

    .eyebrow,
    .section-label {
      display: flex;
      align-items: center;
      gap: 11px;
      margin-bottom: 18px;
      color: var(--gold-light);
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 2.5px;
      text-transform: uppercase;
    }

    .eyebrow::before,
    .section-label::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--gold);
      flex: 0 0 auto;
    }

    .hero h1 {
      color: var(--white);
      font-size: clamp(46px, 6vw, 78px);
      line-height: 1.02;
      letter-spacing: -2.5px;
      margin-bottom: 25px;
    }

    .hero h1 span {
      display: block;
      color: var(--gold-light);
      font-style: italic;
    }

    .hero p {
      max-width: 600px;
      /*margin-bottom: 34px;*/
      color: rgba(255,255,255,.86);
      font-size: 18px;
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 24px;
      border-radius: 3px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: .25s ease;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--white);
    }

    .btn-primary:hover {
      background: var(--gold-light);
      color: var(--navy);
    }

    .btn-outline {
      border: 1px solid rgba(255,255,255,.55);
      color: var(--white);
    }

    .btn-outline:hover {
      background: var(--white);
      color: var(--maroon);
    }

    /* =========================
       BUSINESS PILLARS
    ========================= */

    .core-capabilities-wrapper { background: var(--white);
      /*box-shadow: 0 18px 50px rgba(7,26,53,.15);*/ }

    .pillars {
      position: relative;
      z-index: 5;
      /*margin-top: -90px;*/
      padding: 110px;
    }

    .pillar-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: var(--white);
      box-shadow: 0 18px 50px rgba(7,26,53,.15);
    }

    .pillar {
      padding: 38px 34px;
      border-right: 1px solid var(--border);
    }

    .pillar:last-child {
      border-right: 0;
    }

    .pillar-icon {
      width: 80px;
      height: 80px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      margin-bottom: 19px;
      color: var(--white);
      font-size: 21px;
    }

    .pillar:nth-child(1) .pillar-icon { background: var(--green); }
    .pillar:nth-child(2) .pillar-icon { background: var(--maroon); }
    .pillar:nth-child(3) .pillar-icon { background: var(--gold); }

    .pillar h3 {
      margin-bottom: 10px;
      color: var(--navy);
      font-size: 24px;
    }

    .pillar p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    /* =========================
       GENERAL
    ========================= */

    section {
      padding: 110px 0;
    }

    .section-label {
      color: var(--maroon);
    }

    .section-title {
      max-width: 760px;
      margin-bottom: 22px;
      color: var(--navy);
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1.1;
      letter-spacing: -1.5px;
    }

    .section-intro {
      max-width: 720px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.8;
    }

    /* =========================
       ABOUT
    ========================= */

    .about {
      background: var(--lighter);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 90px;
      align-items: center;
    }

    .about-copy p {
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 16px;
    }

    .about-visual {
      position: relative;
      min-height: 470px;
      background:
        linear-gradient(135deg, rgba(7,26,53,.12), rgba(90,16,37,.14)),
        url("images/cargo-ship-sunset-asian-port.jpg")
        center / cover no-repeat;
    }

    .about-card {
      position: absolute;
      left: -35px;
      bottom: -35px;
      max-width: 285px;
      padding: 28px;
      background: var(--maroon);
      color: var(--white);
      border-top: 4px solid var(--gold);
    }

    .about-card strong {
      display: block;
      margin-bottom: 5px;
      font-size: 31px;
    }

    .about-card span {
      color: rgba(255,255,255,.72);
      font-size: 14px;
      line-height: 1.5;
    }

    /* =========================
       CAPABILITIES
    ========================= */

    .capability-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 55px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .capability {
      min-height: 220px;
      padding: 34px;
      background: var(--white);
      transition: .25s ease;
    }

    .capability:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 35px rgba(7,26,53,.08);
    }

    .capability-number {
      margin-bottom: 19px;
      color: var(--gold);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 1px;
    }

    .capability h3 {
      margin-bottom: 10px;
      color: var(--navy);
      font-size: 24px;
    }

    .capability p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    /* =========================
       TRANSITION
    ========================= */

    .transition {
      color: var(--white);
      background:
        linear-gradient(90deg, rgba(5,20,40,.96), rgba(7,26,53,.79)),
        url("images/banner.jpeg")
        center / cover no-repeat;
    }

    .transition .section-label {
      color: var(--gold-light);
    }

    .transition .section-title {
      color: var(--white);
    }

    .transition .section-intro {
      color: rgba(255,255,255,.72);
    }

    .transition-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      margin-top: 60px;
    }

    .transition-item {
      padding-top: 25px;
      border-top: 1px solid rgba(255,255,255,.22);
    }

    .transition-item h3 {
      margin-bottom: 9px;
      font-size: 24px;
    }

    .transition-item p {
      color: rgba(255,255,255,.66);
      font-size: 14px;
    }

    /* =========================
       AGRICULTURE
    ========================= */

    .agriculture-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      min-height: 560px;
    }

    .agriculture-image {
      background:
        linear-gradient(rgba(12,45,23,.13), rgba(12,45,23,.13)),
        url("images/new-plant.jpeg")
        center / cover no-repeat;
    }

    .agriculture-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px;
      background: #f0eee7;
    }

    .agriculture-copy h2 {
      margin-bottom: 22px;
      color: var(--navy);
      font-size: 42px;
      line-height: 1.1;
    }

    .agriculture-copy p {
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 16px;
    }

    /* =========================
       FINANCING
    ========================= */

    .financing {
      color: var(--white);
      background: var(--navy);
    }

    .financing .section-label {
      color: var(--gold-light);
    }

    .financing .section-title {
      color: var(--white);
    }

    .financing .section-intro {
      color: rgba(255,255,255,.7);
    }

    .finance-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 55px;
    }

    .finance-card {
      padding: 34px;
      border: 1px solid rgba(255,255,255,.14);
      border-top: 3px solid var(--gold);
      background: rgba(255,255,255,.035);
    }

    .finance-card span {
      display: block;
      margin-bottom: 19px;
      color: var(--gold-light);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .finance-card h3 {
      margin-bottom: 10px;
      font-size: 22px;
    }

    .finance-card p {
      color: rgba(255,255,255,.66);
      font-size: 14px;
    }

    /* =========================
       NET ZERO
    ========================= */

    .net-zero {
      background: #f4f3ee;
    }

    .net-zero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 90px;
      align-items: center;
    }

    .net-zero-visual {
      position: relative;
      min-height: 480px;
      background:
        linear-gradient(135deg, rgba(7,26,53,.15), rgba(79,143,89,.13)),
        url("images/bioenergy.jpeg")
        center / cover no-repeat;
    }

    .net-zero-badge {
      position: absolute;
      right: -25px;
      bottom: -25px;
      width: 145px;
      height: 145px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--maroon);
      color: var(--white);
      font-size: 23px;
      font-weight: 800;
      line-height: 1.05;
      text-align: center;
      border: 6px solid #f4f3ee;
    }

    .net-zero-copy p {
      margin-bottom: 20px;
      color: var(--muted);
      font-size: 16px;
    }

    /* =========================
       ESG
    ========================= */

    .esg-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 55px;
    }

    .esg-card {
      padding: 40px 34px;
      border-top: 3px solid var(--gold);
      background: var(--lighter);
    }

    .esg-card:nth-child(2) { border-top-color: var(--maroon); }
    .esg-card:nth-child(3) { border-top-color: var(--navy); }

    .esg-card h3 {
      margin-bottom: 14px;
      color: var(--navy);
      font-size: 23px;
    }

    .esg-card p {
      color: var(--muted);
      font-size: 14px;
    }

    /* =========================
       PATHWAY
    ========================= */

    .pathway {
      background: #f5f4f1;
    }

    .pathway-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin-top: 55px;
    }

    .step {
      padding: 35px 28px;
      border: 1px solid var(--border);
      border-right: 0;
      background: var(--white);
    }

    .step:last-child {
      border-right: 1px solid var(--border);
    }

    .step-number {
      width: 42px;
      height: 42px;
      display: inline-grid;
      place-items: center;
      margin-bottom: 20px;
      border-radius: 50%;
      background: var(--maroon);
      color: var(--white);
      font-size: 13px;
      font-weight: 800;
    }

    .step h3 {
      margin-bottom: 10px;
      color: var(--navy);
      font-size: 19px;
    }

    .step p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    /* =========================
       CTA
    ========================= */

    .cta {
      padding: 120px 0;
      color: var(--white);
      text-align: center;
      background:
        linear-gradient(rgba(5,24,48,.89), rgba(5,24,48,.93)),
        url("images/cargo-ship-sunset-asian-port.jpg")
        center / cover no-repeat;
    }

    .cta .section-label {
      justify-content: center;
      color: var(--gold-light);
    }

    .cta h2 {
      max-width: 900px;
      margin: 0 auto 22px;
      font-size: clamp(38px, 5vw, 62px);
      line-height: 1.05;
      letter-spacing: -1.5px;
    }

    .cta p {
      max-width: 650px;
      margin: 0 auto 32px;
      color: rgba(255,255,255,.72);
      font-size: 17px;
    }

    /* =========================
       FOOTER
    ========================= */

    footer {
      padding: 25px 0 25px;
      color: var(--white);
      background: #031326;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 50px;
      padding-bottom: 45px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    footer .logo {
      margin-bottom: 20px;
    }

    footer .logo img {
      width: 225px;
    }

    .footer-brand p {
      max-width: 330px;
      color: rgba(255,255,255,.55);
      font-size: 13px;
    }

    .footer-column h4 {
      margin-bottom: 16px;
      color: var(--gold-light);
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .footer-column p,
    .footer-column a {
      display: block;
      margin-bottom: 8px;
      color: rgba(255,255,255,.6);
      font-size: 13px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-top: 0px;
      color: var(--gold);
      font-size: 14px;
    }
    .footer-bottom span a:hover { text-decoration: underline; }

    /* =========================
       CONTACT FORM
    ========================= */

    .contact-form-section {
      padding: 105px 0;
      background: var(--lighter);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 70px;
      align-items: start;
    }

    .contact-copy h2 {
      margin-bottom: 20px;
      color: var(--navy);
      font-size: clamp(36px, 4vw, 52px);
      line-height: 1.08;
      letter-spacing: -1.5px;
    }

    .contact-copy p {
      max-width: 480px;
      margin-bottom: 25px;
      color: var(--muted);
      font-size: 16px;
    }

    .contact-details {
      padding-top: 10px;
    }

    .contact-detail {
      padding: 18px 0;
      border-top: 1px solid var(--border);
    }

    .contact-detail:last-child {
      border-bottom: 1px solid var(--border);
    }

    .contact-detail span {
      display: block;
      margin-bottom: 5px;
      color: var(--gold);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .contact-detail strong,
    .contact-detail a {
      color: var(--navy);
      font-size: 15px;
      font-weight: 600;
    }

    .contact-form {
      padding: 38px;
      background: var(--white);
      border: 1px solid var(--border);
      border-top: 4px solid var(--maroon);
      box-shadow: 0 18px 45px rgba(7,26,53,.08);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      margin-bottom: 7px;
      color: var(--navy);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .7px;
      text-transform: uppercase;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 13px 14px;
      border: 1px solid #d5d5d1;
      border-radius: 2px;
      outline: none;
      background: #fff;
      color: var(--text);
      font: inherit;
      font-size: 14px;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .form-group textarea {
      min-height: 135px;
      resize: vertical;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(177,138,60,.12);
    }

    .form-note {
      margin-top: 13px;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.5;
    }

    .contact-form .btn {
      border: 0;
      cursor: pointer;
    }

    /* =========================
       CONTACT SUCCESS STATE
    ========================= */

    .contact-success {
      display: none;
      padding: 48px 38px;
      background: var(--white);
      border: 1px solid var(--border);
      border-top: 4px solid var(--green);
      box-shadow: 0 18px 45px rgba(7,26,53,.08);
      text-align: center;
    }

    .contact-success.show {
      display: block;
    }

    .success-icon {
      width: 64px;
      height: 64px;
      display: grid;
      place-items: center;
      margin: 0 auto 22px;
      border-radius: 50%;
      background: var(--green);
      color: var(--white);
      font-size: 28px;
      font-weight: 700;
    }

    .contact-success h3 {
      margin-bottom: 10px;
      color: var(--navy);
      font-size: 28px;
    }

    .contact-success p {
      max-width: 450px;
      margin: 0 auto 24px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    /* Privacy Policy Page CSS Starts */

    /* Hero */
    .page-hero {
      padding: 165px 0 80px;
      background:
        linear-gradient(135deg, #071a35 0%, #102b4b 60%, #5a1025 100%);
      color: var(--white);
    }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 11px;
      margin-bottom: 18px;
      color: var(--gold-light);
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 2.5px;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--gold);
    }

    .page-hero h1 {
      margin-bottom: 15px;
      font-size: clamp(42px, 6vw, 68px);
      line-height: 1.05;
      letter-spacing: -2px;
    }

    .page-hero p {
      max-width: 680px;
      color: rgba(255,255,255,.72);
      font-size: 16px;
    }

    /* Policy */
    .policy-wrap {
      padding: 80px 0 110px;
    }

    .policy-layout {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 65px;
      align-items: start;
    }

    .policy-sidebar {
      position: sticky;
      top: 30px;
      padding: 25px;
      background: var(--lighter);
      border-left: 3px solid var(--gold);
    }

    .policy-sidebar strong {
      display: block;
      margin-bottom: 14px;
      color: var(--navy);
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .policy-sidebar a {
      display: block;
      padding: 5px 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
    }

    .policy-content h2 {
      margin: 42px 0 14px;
      color: var(--navy);
      font-size: 27px;
      line-height: 1.2;
    }

    .policy-content h2:first-child {
      margin-top: 0;
    }

    .policy-content h3 {
      margin: 25px 0 9px;
      color: var(--navy);
      font-size: 18px;
    }

    .policy-content p {
      margin-bottom: 15px;
      color: var(--muted);
      font-size: 15px;
    }

    .policy-content ul {
      margin: 0 0 18px 21px;
      color: var(--muted);
      font-size: 15px;
    }

    .policy-content li {
      margin-bottom: 7px;
    }

    .effective {
      display: inline-block;
      margin-bottom: 30px;
      padding: 7px 12px;
      background: var(--light);
      color: var(--maroon);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .notice {
      margin: 25px 0;
      padding: 22px 25px;
      background: #f8f6ef;
      border-left: 4px solid var(--gold);
    }

    .notice p {
      margin: 0;
    }

    /* Privacy Policy Page CSS Ends */

    /* =========================
       RESPONSIVE
    ========================= */

    @media (max-width: 900px) {
      .hero { min-height: 680px; }

      .pillar-grid,
      .capability-grid,
      .finance-grid,
      .esg-grid {
        grid-template-columns: 1fr;
      }

      .pillar {
        border-right: 0;
        border-bottom: 1px solid var(--border);
      }

      .about-grid,
      .net-zero-grid,
      .agriculture-grid,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
      }

      .contact-form {
        padding: 30px;
      }

      .about-visual,
      .net-zero-visual {
        min-height: 400px;
      }

      .agriculture-image {
        min-height: 420px;
      }

      .agriculture-copy {
        padding: 55px 35px;
      }

      .transition-grid {
        grid-template-columns: 1fr;
      }

      .pathway-grid {
        grid-template-columns: 1fr 1fr;
      }

      .step:nth-child(2) {
        border-right: 1px solid var(--border);
      }

      .step:nth-child(n+3) {
        border-top: 0;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .policy-layout {
        grid-template-columns: 1fr;
        gap: 35px;
      }

      .policy-sidebar {
        position: static;
      }

      .policy-sidebar a {
        display: inline-block;
        margin-right: 14px;
      }
    }

    @media (max-width: 600px) {
      .container {
        width: min(100% - 32px, var(--max-width));
      }

      section {
        padding: 75px 0;
      }

      .header {
        padding: 18px 0;
      }

      .header .logo img {
        width: 190px;
      }

      .header-cta {
        padding: 10px 14px;
        font-size: 10px;
      }

      .hero {
        min-height: 700px;
      }

      .hero h1 {
        font-size: 43px;
      }

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

      .pillars {
        margin-top: -45px;
      }

      .pillar {
        padding: 30px 25px;
      }

      .pathway-grid {
        grid-template-columns: 1fr;
      }

      .step {
        border-right: 1px solid var(--border);
        border-top: 0;
      }

      .step:first-child {
        border-top: 1px solid var(--border);
      }

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

      .footer-bottom {
        flex-direction: column;
      }
      .page-hero {
        padding: 70px 0 60px;
      }

      .policy-wrap {
        padding: 60px 0 80px;
      }
    }