    :root {
      --primary-blue: #245FA1;
      --primary-dark: #1A4A7F;
      --dark-text: #1E2A3E;
      --muted-text: #5A6E8A;
      --gold: #D4AF37;
      --light-bg-start: #EFF5FB;
      --light-bg-end: #E3EEF8;
    }

    .custom-container {
      max-width: 1280px;
      margin: 0 auto;
      padding-left: 1.75rem;
      padding-right: 1.75rem;
    }

    .policy-container {
      max-width: 900px;
      margin: 0 auto;
    }
    /* hero overlay */
    .hero-overlay {
      background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
    }
    /* notice banner */
    .notice-banner {
      background-color: rgba(212, 175, 55, 0.1);
      border-left: 4px solid var(--gold);
    }
    /* policy section */
    .policy-section {
      border-bottom: 1px solid #dee2e6;
      padding-bottom: 2.5rem;
      margin-bottom: 2.5rem;
    }
    .policy-section:last-child {
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 0;
    }
    .policy-title {
      color: var(--primary-blue);
      font-weight: 600;
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }
    .policy-text {
      color: #4a5568;
      line-height: 1.65;
    }
    .policy-bullet {
      display: flex;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }
    .policy-bullet-marker {
      color: var(--gold);
      font-weight: bold;
      flex-shrink: 0;
    }

    .policy-content ul li {
        list-style-type: none;
    }

    .policy-content ul li::before {
        content: "•";
        color: var(--gold);
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }


    .contact-box {
      background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
      border-radius: 0.75rem;
      padding: 2rem;
      color: white;
    }
    .btn-email {
      background: white;
      color: var(--primary-blue);
      border-radius: 999px;
      padding: 0.6rem 1.5rem;
      font-weight: 600;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
    }
    .btn-email:hover {
      background: #f8f9fa;
      color: var(--primary-dark);
    }
    .btn-whatsapp-custom {
      background: var(--gold);
      color: white;
      border-radius: 999px;
      padding: 0.6rem 1.5rem;
      font-weight: 600;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
    }
    .btn-whatsapp-custom:hover {
      background: #b8942e;
      color: white;
    }
    @media (max-width: 768px) {
      .custom-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
      }
      .policy-title {
        font-size: 1.5rem;
      }
    }
