.page-original {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  overflow-x: hidden; /* Prevent horizontal scroll on wider elements */
}

.page-original__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-original__section-title {
  font-size: clamp(2em, 4vw, 2.8em); /* H1 size rule applied to H2 for content sections */
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-original__sub-title {
  font-size: clamp(1.5em, 3vw, 2em);
  color: #FFD36B; /* Glow color */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-original__section-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 50px;
  color: #FFF6D6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-original__btn-primary,
.page-original__btn-secondary,
.page-original__btn-small {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  max-width: 100%; /* Ensure buttons don't overflow on mobile */
}

.page-original__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for contrast */
  border: 2px solid transparent;
}

.page-original__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 216, 106, 0.4);
}

.page-original__btn-secondary {
  background-color: transparent;
  color: #FFD36B; /* Glow color */
  border: 2px solid #FFD36B; /* Glow color for border */
}

.page-original__btn-secondary:hover {
  background-color: #FFD36B;
  color: #111111; /* Dark text for contrast */
  transform: translateY(-2px);
}

.page-original__btn-small {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  padding: 8px 18px;
  font-size: 0.9em;
  border: none;
}

.page-original__btn-small:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255, 216, 106, 0.3);
}

/* Hero Section */
.page-original__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing for desktop */
  box-sizing: border-box;
}

.page-original__hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-original__hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.page-original__hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: translateX(100%); /* Initial state for sliding in from right */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-original__hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.page-original__hero-slide.prev {
  transform: translateX(-100%);
}

.page-original__hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-original__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-original__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* H1 font size, clamped */
  color: #FFD36B; /* Glow color */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-original__subtitle {
  font-size: clamp(1.1em, 2vw, 1.4em);
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-original__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-original__hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.page-original__hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-original__hero-dot.active {
  background-color: #FFD36B; /* Glow color */
}

/* About Section */
.page-original__about-section {
  padding: 80px 0;
  background-color: #0A0A0A; /* Background */
}

.page-original__text-block {
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-original__text-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-original__text-block.collapsed {
  max-height: 400px; /* Initial collapsed height */
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease-out;
}

.page-original__text-block.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, #0A0A0A, transparent);
  pointer-events: none;
}

.page-original__load-less-btn {
  display: block;
  margin: 30px auto 0;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 200px;
}