:root {
  --gaya-sehat-latar: #090d16;
  --gaya-sehat-permukaan: #131a2b;
  --gaya-sehat-permukaan-pudar: rgba(19, 26, 43, 0.85);
  --gaya-sehat-sorot: #10b981;
  --gaya-sehat-sorot-pudar: rgba(16, 185, 129, 0.15);
  --gaya-sehat-aksen: #f59e0b;
  --gaya-sehat-teks: #f3f4f6;
  --gaya-sehat-teks-redup: #9ca3af;
  --gaya-sehat-batas: #1f2937;
  --gaya-sehat-gradasi: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

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

body {
  background-color: var(--gaya-sehat-latar);
  color: var(--gaya-sehat-teks);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

a {
  color: var(--gaya-sehat-teks);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gaya-sehat-sorot);
}

/* Header & Navigasi */
.gsh-pala-area {
  background-color: var(--gaya-sehat-permukaan);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gaya-sehat-batas);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gsh-wadah {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gsh-pala-dalam {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.gsh-logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--gaya-sehat-teks);
}

.gsh-logo-brand svg {
  fill: var(--gaya-sehat-sorot);
}

.gsh-nav-grup {
  display: flex;
  align-items: center;
  gap: 32px;
}

.gsh-nav-grup a {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.gsh-nav-grup a.gsh-aktif {
  color: var(--gaya-sehat-sorot);
}

/* Hamburger Menu CSS Only */
.gsh-menu-picu {
  display: none;
}

.gsh-menu-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1002;
}

.gsh-menu-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--gaya-sehat-teks);
  transition: all 0.3s ease;
}

/* Hero Section */
.gsh-pahlawan-seksi {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.gsh-pahlawan-seksi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.gsh-pahlawan-beranda::before {
  background-image: url('img/bg.webp');
}

.gsh-pahlawan-pakar::before {
  background-image: url('img/bg.webp');
}

.gsh-pahlawan-reservasi::before {
  background-image: url('img/bg3.webp');
}

.gsh-pahlawan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 13, 22, 0.7);
  z-index: 2;
}

.gsh-pahlawan-konten {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 24px;
}

.gsh-pahlawan-konten h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 20px;
  color: var(--gaya-sehat-teks);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.gsh-pahlawan-konten p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--gaya-sehat-teks-redup);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.gsh-tombol-sorot {
  display: inline-block;
  background: var(--gaya-sehat-gradasi);
  color: #fff;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.gsh-tombol-sorot:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
  color: #fff;
}

/* Floating Stats Bar */
.gsh-pahlawan-bawahan {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  padding-bottom: 60px;
}

.gsh-apung-kotak {
  background-color: var(--gaya-sehat-permukaan);
  border: 1px solid var(--gaya-sehat-batas);
  border-radius: 16px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  box-shadow: var(--gaya-sehat-bayangan);
}

.gsh-apung-item {
  text-align: center;
}

.gsh-apung-angka {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gaya-sehat-sorot);
  font-family: var(--font-display);
  margin-bottom: 5px;
}

.gsh-apung-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gaya-sehat-teks-redup);
}

/* Content Sections (Zigzag) */
.gsh-konten-seksi {
  padding: 10vh 0;
}

.gsh-selang-seling {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.gsh-selang-seling:last-child {
  margin-bottom: 0;
}

.gsh-selang-gbr {
  flex: 1;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--gaya-sehat-bayangan);
}

.gsh-selang-gbr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gsh-selang-kiri .gsh-selang-gbr {
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.gsh-selang-kanan {
  flex-direction: row-reverse;
}

.gsh-selang-kanan .gsh-selang-gbr {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.gsh-selang-info {
  flex: 1;
}

.gsh-selang-info h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--gaya-sehat-teks);
  position: relative;
}

.gsh-selang-info h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--gaya-sehat-sorot);
  margin-top: 10px;
}

.gsh-selang-info p {
  color: var(--gaya-sehat-teks-redup);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* Features Grid */
.gsh-pilar-seksi {
  background-color: var(--gaya-sehat-permukaan);
  padding: 10vh 0;
  border-top: 1px solid var(--gaya-sehat-batas);
  border-bottom: 1px solid var(--gaya-sehat-batas);
}

.gsh-seksi-judul {
  text-align: center;
  margin-bottom: 60px;
}

.gsh-seksi-judul h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.gsh-seksi-judul p {
  color: var(--gaya-sehat-teks-redup);
  max-width: 600px;
  margin: 0 auto;
}

.gsh-pilar-kisi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.gsh-pilar-item {
  background-color: var(--gaya-sehat-latar);
  border-left: 4px solid var(--gaya-sehat-sorot);
  border-radius: 12px;
  padding: 35px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gsh-pilar-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--gaya-sehat-bayangan);
}

.gsh-pilar-ikon {
  background-color: var(--gaya-sehat-sorot-pudar);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.gsh-pilar-ikon svg {
  fill: var(--gaya-sehat-sorot);
}

.gsh-pilar-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.gsh-pilar-item p {
  color: var(--gaya-sehat-teks-redup);
  font-size: 0.95rem;
}

/* Timeline / Cara Kerja */
.gsh-alur-seksi {
  padding: 10vh 0;
}

.gsh-alur-tengah {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0 auto;
}

.gsh-alur-tengah::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--gaya-sehat-batas);
  transform: translateX(-50%);
}

.gsh-alur-baris {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.gsh-alur-baris:last-child {
  margin-bottom: 0;
}

.gsh-alur-titik {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--gaya-sehat-sorot);
  border: 4px solid var(--gaya-sehat-latar);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  z-index: 5;
}

.gsh-alur-konten {
  width: 45%;
  background-color: var(--gaya-sehat-permukaan);
  border: 1px solid var(--gaya-sehat-batas);
  padding: 30px;
  border-radius: 16px;
}

.gsh-alur-kiri .gsh-alur-konten {
  text-align: right;
  margin-right: auto;
}

.gsh-alur-kanan .gsh-alur-konten {
  text-align: left;
  margin-left: auto;
}

.gsh-alur-konten h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--gaya-sehat-teks);
}

.gsh-alur-konten p {
  color: var(--gaya-sehat-teks-redup);
  font-size: 0.95rem;
}

/* CTA Strip */
.gsh-strip-ajakan {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.gsh-strip-ajakan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.gsh-strip-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 13, 22, 0.85);
  z-index: 2;
}

.gsh-strip-konten {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
}

.gsh-strip-konten h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.gsh-strip-konten p {
  color: var(--gaya-sehat-teks-redup);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Biografi Pakar & Edukasi */
.gsh-bio-seksi {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 10vh 0;
}

.gsh-bio-foto {
  flex: 1;
  height: 550px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--gaya-sehat-bayangan);
}

.gsh-bio-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gsh-bio-info {
  flex: 1.2;
}

.gsh-bio-tag {
  color: var(--gaya-sehat-sorot);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
  letter-spacing: 1px;
}

.gsh-bio-info h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.gsh-bio-info p {
  color: var(--gaya-sehat-teks-redup);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.gsh-stat-kisi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid var(--gaya-sehat-batas);
  padding-top: 30px;
}

.gsh-stat-item h4 {
  font-size: 2.2rem;
  color: var(--gaya-sehat-sorot);
  margin-bottom: 5px;
}

.gsh-stat-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* Formulir Reservasi & Detil */
.gsh-daftar-seksi {
  padding: 10vh 0;
}

.gsh-daftar-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.gsh-info-samping {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gsh-detil-kartu {
  background-color: var(--gaya-sehat-permukaan);
  border: 1px solid var(--gaya-sehat-batas);
  border-radius: 16px;
  padding: 30px;
}

.gsh-detil-kartu h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--gaya-sehat-batas);
  padding-bottom: 15px;
}

.gsh-detil-kartu h3 svg {
  fill: var(--gaya-sehat-sorot);
}

.gsh-detil-kartu p {
  color: var(--gaya-sehat-teks-redup);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.gsh-detil-list {
  list-style: none;
}

.gsh-detil-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.gsh-detil-list li span {
  width: 8px;
  height: 8px;
  background-color: var(--gaya-sehat-sorot);
  border-radius: 50%;
}

.gsh-formulir-box {
  background-color: var(--gaya-sehat-permukaan);
  border: 1px solid var(--gaya-sehat-batas);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--gaya-sehat-bayangan);
}

.gsh-formulir-box h3 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  text-align: center;
}

.gsh-form-grup {
  margin-bottom: 20px;
}

.gsh-form-grup label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.gsh-form-kontrol {
  width: 100%;
  background-color: var(--gaya-sehat-latar);
  border: 1px solid var(--gaya-sehat-batas);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--gaya-sehat-teks);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.gsh-form-kontrol:focus {
  outline: none;
  border-color: var(--gaya-sehat-sorot);
}

textarea.gsh-form-kontrol {
  resize: vertical;
  min-height: 100px;
}

.gsh-form-setuju {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--gaya-sehat-teks-redup);
}

.gsh-form-setuju input {
  margin-top: 3px;
}

.gsh-form-setuju a {
  color: var(--gaya-sehat-sorot);
  text-decoration: underline;
}

.gsh-tombol-form {
  width: 100%;
  background: var(--gaya-sehat-gradasi);
  border: none;
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gsh-tombol-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.gsh-kontak-hub {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gaya-sehat-teks-redup);
}

.gsh-kontak-hub a {
  color: var(--gaya-sehat-sorot);
  font-weight: 600;
}

/* FAQ Accordion (CSS Only) */
.gsh-faq-seksi {
  padding: 10vh 0;
  border-top: 1px solid var(--gaya-sehat-batas);
}

.gsh-faq-wadah {
  max-width: 800px;
  margin: 0 auto;
}

.gsh-faq-item {
  background-color: var(--gaya-sehat-permukaan);
  border: 1px solid var(--gaya-sehat-batas);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.gsh-faq-tanya {
  padding: 20px 25px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: default;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gaya-sehat-batas);
}

.gsh-faq-tanya span {
  color: var(--gaya-sehat-sorot);
}

.gsh-faq-jawab {
  padding: 20px 25px;
  color: var(--gaya-sehat-teks-redup);
  font-size: 0.95rem;
}

/* Legal Pages (Privacy & Terms) */
.gsh-legal-konten {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

.gsh-legal-konten h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.gsh-legal-update {
  text-align: center;
  color: var(--gaya-sehat-teks-redup);
  font-size: 0.9rem;
  margin-bottom: 50px;
}

.gsh-legal-blok {
  margin-bottom: 40px;
}

.gsh-legal-blok h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--gaya-sehat-sorot);
}

.gsh-legal-blok p {
  color: var(--gaya-sehat-teks-redup);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

/* Thank You Page */
.gsh-terima-seksi {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gsh-terima-seksi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.gsh-terima-gantung {
  position: relative;
  z-index: 3;
  background-color: var(--gaya-sehat-permukaan-pudar);
  border: 1px solid var(--gaya-sehat-batas);
  backdrop-filter: blur(10px);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 600px;
  margin: 0 24px;
}

.gsh-terima-ikon {
  width: 80px;
  height: 80px;
  background-color: var(--gaya-sehat-sorot-pudar);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
}

.gsh-terima-ikon svg {
  fill: var(--gaya-sehat-sorot);
}

.gsh-terima-gantung h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.gsh-terima-gantung p {
  color: var(--gaya-sehat-teks-redup);
  margin-bottom: 35px;
}

/* Footer */
.gsh-bawah-kaki {
  background-color: var(--gaya-sehat-permukaan);
  border-top: 1px solid var(--gaya-sehat-batas);
  padding: 60px 0 30px 0;
}

.gsh-bawah-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.gsh-bawah-info h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.gsh-bawah-info h3 svg {
  fill: var(--gaya-sehat-sorot);
}

.gsh-bawah-info p {
  color: var(--gaya-sehat-teks-redup);
  font-size: 0.9rem;
  max-width: 500px;
}

.gsh-bawah-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.gsh-bawah-links a {
  font-size: 0.9rem;
  color: var(--gaya-sehat-teks-redup);
}

.gsh-bawah-disclaimer {
  border-top: 1px solid var(--gaya-sehat-batas);
  padding-top: 30px;
  text-align: center;
}

.gsh-bawah-disclaimer p {
  font-size: 0.8rem;
  color: var(--gaya-sehat-teks-redup);
  margin-bottom: 15px;
}

.gsh-bawah-copyright {
  font-size: 0.8rem;
  color: var(--gaya-sehat-teks-redup);
}

/* Cookie Banner */
.gsh-kue-waspada {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--gaya-sehat-permukaan);
  border-top: 2px solid var(--gaya-sehat-sorot);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  padding: 20px 0;
  display: none;
}

.gsh-kue-dalam {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.gsh-kue-dalam p {
  font-size: 0.9rem;
  color: var(--gaya-sehat-teks-redup);
}

.gsh-kue-opsi {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.gsh-tombol-kue {
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.gsh-tombol-setuju {
  background-color: var(--gaya-sehat-sorot);
  color: #fff;
}

.gsh-tombol-tolak {
  background-color: transparent;
  color: var(--gaya-sehat-teks-redup);
  border: 1px solid var(--gaya-sehat-batas);
}

.gsh-tombol-kue:hover {
  opacity: 0.9;
}

/* Responsivitas */
@media (max-width: 992px) {
  .gsh-selang-seling {
    flex-direction: column;
    gap: 30px;
  }
  .gsh-selang-gbr {
    width: 100%;
    height: 350px;
  }
  .gsh-selang-kiri .gsh-selang-gbr,
  .gsh-selang-kanan .gsh-selang-gbr {
    clip-path: none;
  }
  .gsh-bio-seksi {
    flex-direction: column;
    gap: 40px;
  }
  .gsh-bio-foto {
    width: 100%;
    height: 400px;
  }
  .gsh-daftar-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .gsh-nav-grup {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--gaya-sehat-permukaan);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: left 0.4s ease;
    z-index: 1001;
  }

  .gsh-menu-label {
    display: flex;
  }

  .gsh-menu-picu:checked ~ .gsh-pala-dalam .gsh-nav-grup {
    left: 0;
  }

  .gsh-menu-picu:checked ~ .gsh-pala-dalam .gsh-menu-label span:nth-child(1) {
    transform: rotate(45deg) translate(6deg, 6deg);
  }

  .gsh-menu-picu:checked ~ .gsh-pala-dalam .gsh-menu-label span:nth-child(2) {
    opacity: 0;
  }

  .gsh-menu-picu:checked ~ .gsh-pala-dalam .gsh-menu-label span:nth-child(3) {
    transform: rotate(-45deg) translate(6deg, -6deg);
  }

  .gsh-apung-kotak {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: -40px;
  }

  .gsh-pilar-kisi {
    grid-template-columns: 1fr;
  }

  .gsh-alur-tengah::before {
    left: 20px;
  }

  .gsh-alur-baris {
    flex-direction: column;
    align-items: flex-start;
  }

  .gsh-alur-titik {
    left: 20px;
  }

  .gsh-alur-konten {
    width: calc(100% - 40px);
    margin-left: 40px !important;
  }

  .gsh-alur-kiri .gsh-alur-konten {
    text-align: left;
  }

  .gsh-bawah-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gsh-bawah-info h3 {
    justify-content: center;
  }

  .gsh-bawah-links {
    align-items: center;
  }

  .gsh-kue-dalam {
    flex-direction: column;
    text-align: center;
  }
}