/* style/khuynmi.css */
:root {
  --khuynmi-bg: #08160F;
  --khuynmi-card-bg: #11271B;
  --khuynmi-text-main: #F2FFF6;
  --khuynmi-text-secondary: #A7D9B8;
  --khuynmi-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --khuynmi-border: #2E7A4E;
  --khuynmi-glow: #57E38D;
  --khuynmi-gold: #F2C14E;
  --khuynmi-divider: #1E3A2A;
  --khuynmi-deep-green: #0A4B2C;
}

.page-khuynmi {
  background-color: var(--khuynmi-bg);
  color: var(--khuynmi-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-khuynmi__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-khuynmi__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--khuynmi-text-main);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-khuynmi__section-description {
  font-size: 18px;
  color: var(--khuynmi-text-secondary);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-khuynmi__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-khuynmi__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-khuynmi__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-khuynmi__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  color: var(--khuynmi-text-main);
}