/* style/promo.css */
/* Base styles for the promo page content */
.page-promo {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer */
}

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

.page-promo__section {
  padding: 60px 0;
  text-align: center;
}

.page-promo__section-title {
  font-size: clamp(2em, 2.5vw, 3em); /* H1 rule: clamp for font-size */
  color: #F2C14E; /* Main Color */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-promo__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFF6D6; /* Text Main */
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #0A0A0A; /* Background */
  overflow: hidden;
}

.page-promo__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 0;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px 60px;
  margin-top: -150px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.9) 50%, rgba(10, 10, 10, 1) 100%);
  border-radius: 10px;
}

.page-promo__main-title {
  font-size: clamp(2.5em, 4vw, 3.8em);
  color: #FFD36B; /* Glow color for prominence */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-promo__lead-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF6D6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.page-promo__btn-primary,
.page-promo__btn-secondary,
.page-promo__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-promo__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-promo__btn-primary:hover {
  background: linear-gradient(180deg, #FFE080 0%, #E6B02E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-promo__btn-secondary {
  background-color: transparent;
  color: #F2C14E;
  border: 2px solid #F2C14E;
}

.page-promo__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
}

.page-promo__btn-link {
  background-color: transparent;
  color: #F2C14E;
  border: 1px solid #F2C14E;
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 5px;
}

.page-promo__btn-link:hover {
  background-color: #F2C14E;
  color: #111111;
}

/* Why Choose Us Section */
.page-promo__why-choose-us {
  background-color: #111111;
  padding-top: 80px;
  padding-bottom: 80px;
}}