body {
  background: #ffffff;
  color: #1a1a1a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

section {
  padding: 64px 16px;
}

.card {
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

h1 {
  font-weight: 800;
  line-height: 1.1;
}

.btn {
  border-radius: 16px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

:root {
  --primary: #6b21a8;
  --secondary: #faf5ff;
  --accent: #f97316;
  --text: #3b0764;
  --bg: #ffffff;
}

/* Typography Clamp */
p, span, li, label {
  font-size: clamp(14px, 4vw, 16px);
}
h1 {
  font-size: clamp(22px, 5vw, 36px);
}
h2 {
  font-size: clamp(18px, 4.5vw, 28px);
}
h3 {
  font-size: clamp(16px, 4vw, 22px);
}

/* Gallery Rules */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gallery-main {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 16px;
  background-color: #f9fafb;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#img-1:checked ~ .gallery-main .slide-1,
#img-2:checked ~ .gallery-main .slide-2,
#img-3:checked ~ .gallery-main .slide-3,
#img-4:checked ~ .gallery-main .slide-4 {
  opacity: 1;
  z-index: 10;
}

.thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.thumbnails label {
  cursor: pointer;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  width: 25%;
  aspect-ratio: 1;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.thumbnails label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#img-1:checked ~ .thumbnails label[for="img-1"],
#img-2:checked ~ .thumbnails label[for="img-2"],
#img-3:checked ~ .thumbnails label[for="img-3"],
#img-4:checked ~ .thumbnails label[for="img-4"] {
  border-color: var(--primary);
  transform: scale(1.03);
}