.page-about {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
}

/* --- Hero Section --- */
.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* 10px top padding as per requirement */
  text-align: center;
  background-color: #0A0A0A; /* Use background color instead of image overlay */
  box-sizing: border-box;
}

.page-about__hero-image-block {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 30px; /* Space between image and content */
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-about__hero-content-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px; /* Padding for text */
}

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow color for emphasis */
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.6);
}

.page-about__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
}

/* --- General Section Styles --- */
.page-about__section {
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-about__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #FFD36B; /* Glow color */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}}