*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
      --orange:      #F5A623;
      --orange-dark: #E8941A;
      --orange-light:#FFC86B;
      --text:        #333333;
      --text-light:  #888888;
      --bg:          #FFFFFF;
	  --green:		 #296118;
    }

body {
      font-family: 'Lato', sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
    }

/* ── Decorative corner shapes ── */
.corner-tl {
      position: fixed;
      top: 0; left: 0;
      width: 140px; height: 60px;
      pointer-events: none;
      z-index: 0;
    }
.corner-tl::before {
      content: '';
      position: absolute;
      top: -20px; left: -20px;
      width: 140px; height: 60px;
      background: var(--orange);
      opacity: 0.9;
      transform: skewX(-8deg) skewY(-4deg);
      border-radius: 0 0 30px 0;
    }
.corner-tl::after {
      content: '';
      position: absolute;
      top: 10px; left: -10px;
      width: 80px; height: 60px;
      background: var(--orange-light);
      opacity: 0.55;
      transform: skewX(-8deg) skewY(-4deg);
      border-radius: 0 0 20px 0;
    }

.corner-br {
      position: fixed;
      bottom: 0; right: 0;
      width: 140px; height: 50px;
      pointer-events: none;
      z-index: 0;
    }
.corner-br::before {
      content: '';
      position: absolute;
      bottom: -20px; right: -20px;
      width: 140px; height: 50px;
      background: var(--orange);
      opacity: 0.9;
      transform: skewX(-8deg) skewY(-4deg);
      border-radius: 30px 0 0 0;
    }
.corner-br::after {
      content: '';
      position: absolute;
      bottom: 8px; right: -10px;
      width: 80px; height: 50px;
      background: var(--orange-light);
      opacity: 0.55;
      transform: skewX(-8deg) skewY(-4deg);
      border-radius: 20px 0 0 0;
    }

/* ── Page layout ── */
.page {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      margin: 0 auto;
      padding: 60px 80px 50px;
    }

/* ── Header ── */
.header {
      text-align: center;
      margin-bottom: 44px;
      animation: fadeDown 0.7s ease both;
    }

.shield-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 58px; height: 58px;
      background: var(--orange);
      border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
      margin-bottom: 16px;
      box-shadow: 0 4px 18px rgba(245,166,35,.35);
    }
.shield-icon svg { width: 28px; height: 28px; fill: #fff; }

.title-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
.title-line {
      flex: 0 0 60px;
      height: 2px;
      background: var(--green);
      border-radius: 2px;
    }
.title-text {
      font-family: 'Poppins', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: #3a3a3a;
      letter-spacing: 0.01em;
    }

/* ── Body paragraphs ── */
.policy-body {
      display: flex;
      flex-direction: column;
      gap: 22px;
      margin-bottom: 48px;
      animation: fadeUp 0.8s ease 0.15s both;
    }
.policy-body p {
      font-size: 0.97rem;
      line-height: 1.75;
      color: #3a3a3a;
    }

/* ── Contact section ── */
.contact-section {
      animation: fadeUp 0.8s ease 0.3s both;
    }
.contact-label {
      font-family: 'Poppins', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #3a3a3a;
      margin-bottom: 14px;
    }

.contact-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

.contact-items {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }
.contact-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      color: var(--text);
      font-weight: 400;
    }
.contact-item .icon {
      width: 20px; height: 20px;
      display: flex; align-items: center; justify-content: center;
    }
    .contact-item .icon svg { width: 18px; height: 18px; }

    /* pin icon */
    .icon-pin { fill: var(--green); }
    /* mail icon */
    .icon-mail { fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    /* globe icon */
    .icon-globe { fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

    /* ── Regulator logos ── */
    .regulator-logos {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .logo-ojk {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1.5px solid #eee;
      border-radius: 8px;
      padding: 6px 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,.06);
    }
    .logo-ojk-flag {
      width: 26px; height: 20px;
      border-radius: 3px;
      overflow: hidden;
      display: flex; flex-direction: column;
    }
    .flag-red { flex: 1; background: #CE1126; }
    .flag-white { flex: 1; background: #fff; border: 1px solid #ddd; }
    .logo-ojk-text { font-size: 0.62rem; font-weight: 700; color: #333; line-height: 1.2; }
    .logo-ojk-text span { display: block; color: #555; font-weight: 400; font-size: 0.57rem; }

    .logo-mari {
      display: flex;
      align-items: center;
      gap: 6px;
      background: #006DB6;
      border-radius: 8px;
      padding: 7px 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,.1);
    }
    .logo-mari-icon {
      width: 22px; height: 22px;
      background: #FF6B00;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .logo-mari-icon svg { width: 12px; height: 12px; fill: #fff; }
    .logo-mari-text { font-size: 0.78rem; font-weight: 700; color: #fff; letter-spacing: 0.04em; }
    .logo-mari-sub { font-size: 0.55rem; color: #cce5ff; font-weight: 400; letter-spacing: 0.06em; display: block; }

    /* ── Footer note ── */
    .footer-note {
      margin-top: 28px;
      font-size: 0.8rem;
      color: var(--text-light);
      animation: fadeUp 0.8s ease 0.45s both;
    }

    /* ── Animations ── */
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 700px) {
      .page { padding: 50px 24px 40px; }
      .title-text { font-size: 1.5rem; }
      .contact-row { flex-direction: column; align-items: flex-start; }
    }
 