:root {
  --page-about-primary-color: #F2C14E;
  --page-about-secondary-color: #FFD36B;
  --page-about-card-bg: #111111;
  --page-about-background: #0A0A0A;
  --page-about-text-main: #FFF6D6;
  --page-about-border-color: #3A2A12;
  --page-about-glow-color: #FFD36B;
  --page-about-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-about {
  background-color: var(--page-about-background);
  color: var(--page-about-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 50px; /* Ensure space for footer */
}

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

/* Hero Section */
.page-about__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, assuming body handles header offset */
  margin-bottom: 40px;
  background-color: var(--page-about-background);
}

.page-about__hero-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

.page-about__hero-content {
  text-align: center;
  padding: 20px 0 40px;
  max-width: 900px;
  margin: 0 auto;
}

.page-about__main-title {
  font-size: 3.2em;
  font-weight: 700;
  color: var(--page-about-primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.4);
}

.page-about__hero-description {
  font-size: 1.2em;
  color: var(--page-about-text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
  text-align: center;
}

.page-about__btn-primary {
  background: var(--page-about-button-gradient);
  color: #ffffff; /* White text for contrast on gradient */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-about__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-about__btn-secondary {
  background: transparent;
  color: var(--page-about-primary-color);
  border: 2px solid var(--page-about-primary-color);
}

.page-about__btn-secondary:hover {
  background: var(--page-about-primary-color);
  color: #0A0A0A; /* Dark text for contrast on primary color */
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

/* General Section Styling */
.page-about__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-about__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--page-about-primary-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.3);
}

.page-about__section-description {
  font-size: 1.1em;
  color: var(--page-about-text-main);
  text-align: center;
  max-width: 900px;
  margin: -20px auto 50px auto;
}

.page-about__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-about__content-wrapper.page-about__reverse-layout {
  flex-direction: row-reverse;
}
}