    @font-face {
      font-family: OpenSauce;
      src: url('../fonts/OpenSauceOne-Regular.ttf');
    }

    @font-face {
      font-family: CFCrayons;
      src: url('../fonts/CFCrayons-Regular.ttf');
    }

    body {
      background-color: #fffae4; /* biru muda */
      font-family: 'OpenSauce';
    }
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      background: transparent;
      transition: background 0.3s ease, box-shadow 0.3s ease;
      padding: 1rem 0;
    }
    /* saat discroll */
    .navbar.scrolled {
      padding-top: 0px;
      padding-bottom: 0px;
    }

    .menu-box {
      background: #fff;
      border-radius: 50px;
      padding: 0.2rem 2rem;
      display: flex;
      align-items: center;
      gap: 2rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    .nav-link {
      color: #592b01;
      font-weight: 400;
      font-size: 1.05rem;
    }
    .nav-link.active {
      font-weight: 700;
      color: #592b01 !important;
    }
    .btn-kontak {
      background: #FFD52D;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 700;
      padding: 0.5rem 1.2rem;
      color: #000;
      white-space: nowrap;
    }
    .hero {
      background-color: #fffae4; /* biru muda */
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0%;         /* geser lebih ke kiri */
      width: 25%;         /* lebar */
      height: 100%;       /* tinggi penuh section */
      background-color: #e1d2b4; /* kuning */
      z-index: 0;
    }

    .hero-content {
      margin-top: 8rem;
      position: relative;
      z-index: 1;
      padding: 6rem 0; /* biar lega */
    }
    .hero-img {
      width: 100%;
    }

    .header-text-sm {
      font-size: 2rem; 
      font-weight: 700; 
      font-style: normal; 
      color: #592b01; 
      font-kerning: normal; 
      text-decoration-line: none; 
      text-decoration-thickness: initial; 
      text-decoration-style: initial;
      text-shadow: rgba(255, 189, 89, 0.4) 0.1rem 0.1rem 0px;
    }

    .header-text-md {
      font-size: 3.5rem; 
      font-weight: 700; 
      font-style: normal; 
      color: #592b01; 
      font-kerning: normal; 
      text-decoration-line: none; 
      text-decoration-thickness: initial; 
      text-decoration-style: initial;
      text-shadow: rgba(255, 189, 89, 0.4) 0.2rem 0.2rem 0px;
    }

    .header-text-lg {
      font-size: 4.5rem; 
      font-weight: 700; 
      font-style: normal; 
      color: #592b01; 
      font-kerning: normal; 
      text-decoration-line: none; 
      text-decoration-thickness: initial; 
      text-decoration-style: initial;
      text-shadow: rgba(255, 189, 89, 0.4) 0.2rem 0.2rem 0px;
    }

    .text-md {
      line-height: 1;
      font-size: 1.5rem;
    }

    .profile-card {
      display: flex;
      flex-direction: column;
      padding: 4rem 2rem;
      width: 100%;
      background-image: url('../images/profile-card.png');
      background-size: cover;
    }

    .profile-card .profile-img {
      width: 100%;
      height: 50%;
      object-fit: cover;
      border-radius: 2rem;
    }

    .profile-card .profile-name {
      font-weight: 600;
      margin-top: 1rem;
      color: #592b01;
      font-family: 'CFCrayons';
      font-size: 1.4rem;
    }

    .profile-card .profile-role, .title-light-sm {
      font-size: 1.1rem;
      font-style: italic;
      color: #592b01;
      font-family: 'Montserrat';
    }

    .title-light-sm {
      font-size: 1.2rem;
    }

    .title-bold-md {
      font-size: 1.8rem;
      font-family: 'CFCrayons';
      font-weight: 600;
      color: #592b01;
    }
    .content-text {
      font-size: 1.1rem;
    }

    .page-header {
      background-image: url('../images/bg.png');
      background-position-y: bottom;
      background-size: cover;
      min-height: 100vh;
      overflow: hidden;
    }

    .page-header .page-content-header {
      height: 100%;
    }

    .page-header .page-content-header img {
      width: 100%;
      object-fit: cover;
      object-position: bottom;
    }

    .program-box {
      background-color: rgba(146, 82, 24, 0.8);
      position: relative;
      width: 67%;
      padding: 3rem 2rem;
      border-radius: 2rem;
    }

    .program-box .title-bar{
      width: 100%;
      border-radius: 25%;
      left: 0%;
      top: 10%;
      text-align: center;
      color: #592b01;
      padding-top: 1.2rem;
      padding-bottom: 1.2rem;
    }

    .program-box .number-circle {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background-color: #FFD52D;
      position: absolute;
      top: -5%;
      left: -5%;
      font-size: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #592b01;
      font-weight: 700;
    }

    .program-box .program-text, .program-box ul {
      font-size: 1.2rem;
      text-align: center;
      color: white;
    }

    .program-box ul {
      text-align: start;
    }

    .program-row {
      display: flex;
      align-items: center;
      margin-top: 5rem;
    }

    .program-heading, .program-bar {
      text-align: center;
    }

    .program-bar {
      width: 100%;
      border-radius: 50px;
      padding: 0.8rem 0;
      background-color: #FFD935;
    }

    .program-bar .main-title {
      color: black;
      font-size: 1.2rem;
      font-weight: 700;
    }

    .info-title {
      background-color: #FFD935;
      color: black;
      font-weight: 700;
      text-align: center;
      border-radius: 50px;
      padding: 0.5rem 1rem;
      margin-bottom: 1rem;
    }

    .info-text {
      font-size: 1rem;
    }

    .info-box {
      width: 100%; /* bisa disesuaikan */
      border-radius: 5px;
      overflow: hidden;
      font-family: Arial, sans-serif;
      margin: 20px auto;
      box-shadow: 0 2px 3px rgba(0,0,0,0.2);
    }

    .info-header {
      background: #b3783d; /* coklat muda */
      color: #fff;
      text-align: center;
      font-weight: bold;
      padding: 10px;
    }

    .info-body {
      background: #552800; /* coklat tua */
      color: #fff;
      text-align: center;
      padding: 1rem 1.3rem;
    }

    .info-phone {
      font-size: 1.5rem;
      font-weight: bold;
      letter-spacing: 1px;
    }

    .register-box {
      background-color: #5C2C0C !important;
    }

    .program-heading .sub-title {
      font-style: italic;
      color: #592b01;
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      font-family: 'Montserrat';
    }

    .program-heading .main-title {
      font-size: 1.9rem;
      font-weight: 700;
      color: #592b01;
      line-height: 1.3;
      font-family: 'CFCrayons';
    }

    .program-heading .main-title span {
      font-family: 'OpenSauce';
    }

    .sq-card {
      background-color: rgba(146, 82, 24, 0.8); /* coklat */
      border-radius: 20px;
      padding: 2.5rem 1.8rem 1.8rem;
      width: 100%;
      color: white;
      position: relative;
      height: 100%; /* supaya ikut tinggi kolom */
      display: flex;
      flex-direction: column;
    }

    .sq-card h3 {
      background-color: #FFD935; /* kuning */
      color: black;
      padding: 8px 20px;
      border-radius: 30px;
      font-size: 18px;
      font-weight: bold;
      position: absolute;
      text-align: center;
      width: 80%;
      top: -20px;
      left: 10%;
    }

    .sq-card ul {
      padding-left: 20px;
      margin: 0;
    }

    .sq-card ul li {
      margin-bottom: 10px;
    }

    .sq-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 1rem;
    }
    .sq-table th {
      background-color: #8B5A2B; /* coklat header */
      color: white;
      text-align: center;
      vertical-align: middle;
    }
    .sq-table td {
      vertical-align: middle;
      padding-left: 0.2rem;
      padding-right: 0.2rem;
    }

    .sq-table td, 
    .sq-table th {
      border: 1px solid #fff; /* border antar kolom dan baris */
    }
    .sq-table tbody tr {
      background-color: #FFEED6; /* warna lebih terang */
    }

    footer {
        background-color: #592b01; /* biru */
        color: white;
        padding: 30px 50px;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 30px;
    }

    /* Bagian logo & tagline */
    .footer-logo {
        max-width: 300px;
    }
    .footer-logo img {
        width: 100%;
        height: auto;
    }
    .footer-tagline {
        font-style: italic;
        margin-top: 5px;
        font-size: 0.9rem;
    }

    /* Bagian kontak */
    .footer-contact h3 {
        margin-bottom: 15px;
        font-size: 1.2rem;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .footer-contact img {
        width: 20px;
        height: 20px;
    }

    /* Bagian Instagram */
    .footer-instagram {
        text-align: center;
    }
    .footer-instagram .gallery {
        display: grid;
        grid-template-columns: repeat(3, 80px);
        gap: 10px;
        justify-content: center;
        margin-bottom: 15px;
    }
    .footer-instagram .gallery img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 5px;
    }
    .instagram-btn {
        background-color: #ffe54f;
        color: black;
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
    }
    .instagram-btn:hover {
        background-color: #ffdb00;
    }

    /* Responsif */
    @media (max-width: 991.98px) {
      .footer-container {
          flex-direction: column;
          align-items: center;
          text-align: center;
      }
      .footer-instagram .gallery {
          grid-template-columns: repeat(3, 70px);
      }
    }