.page-about {
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  background-color: #0D0E12;
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  max-height: 600px; /* Limit hero image height */
}

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

.page-about__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem); /* Responsive font size for H1 */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #FFB04D, #FFA53A, #D96800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-about__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 180px;
  text-align: center;
  border: none;
  cursor: pointer;
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

.page-about__story-section, .page-about__values-section, .page-about__why-choose-us-section, .page-about__cta-section {
  padding: 60px 0;
}

.page-about__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  background: linear-gradient(90deg, #FFB04D, #FFA53A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-about__story-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-about__story-text {
  flex: 1;
}

.page-about__story-text p {
  margin-bottom: 20px;
}

.page-about__story-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-about__story-image {
  width: 100%;
  height: auto;
  max-width: 600px; /* Max width for content images */
  border-radius: 12px;
  object-fit: cover;
}

.page-about__learn-more-button {
  display: inline-block;
  background-color: #A84F0C;
  color: #FFF3E6;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__learn-more-button:hover {
  background-color: #D96800;
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-about__value-card {
  background-color: #17191F;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
}

.page-about__value-icon {
  width: 100%; /* Ensure images take full width of card */
  max-width: 250px; /* Example max-width, must be >= 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum size */
}

.page-about__value-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFA53A;
}

.page-about__why-choose-us-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-about__why-choose-us-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-about__why-choose-us-image {
  width: 100%;
  height: auto;
  max-width: 600px; /* Max width for content images */
  border-radius: 12px;
  object-fit: cover;
}

.page-about__why-choose-us-list {
  flex: 1;
  list-style: none;
  padding: 0;
}

.page-about__list-item {
  background-color: #17191F;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #FFA53A;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-about__list-item strong {
  color: #FFB04D;
}

.page-about__cta-section {
  text-align: center;
  background-color: #17191F;
  padding: 80px 20px;
  border-top: 1px solid #A84F0C;
}

.page-about__cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #FFB04D, #FFA53A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-about__cta-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button--large {
  padding: 18px 35px;
  font-size: 1.1rem;
  margin: 0 10px 20px 10px;
}

.page-about__cta-button--secondary {
  background: #A84F0C;
  margin: 0 10px 20px 10px;
}

.page-about__cta-button--secondary:hover {
  background: #D96800;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__story-grid, .page-about__why-choose-us-content {
    flex-direction: column;
  }
  .page-about__story-image-wrapper, .page-about__why-choose-us-image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-about__hero-content {
    padding: 30px 15px;
  }
  .page-about__main-title {
    font-size: 2.2rem;
  }
  .page-about__hero-description {
    font-size: 1rem;
  }
  .page-about__section-title {
    font-size: 2rem;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__story-section, .page-about__values-section, .page-about__why-choose-us-section, .page-about__cta-section {
    padding: 40px 0;
  }
  .page-about__container {
    padding: 15px;
  }
  .page-about__cta-button {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .page-about__cta-button--large, .page-about__cta-button--secondary {
    margin-bottom: 15px;
  }
  /* Content area images must be responsive */
  .page-about__hero-section img,
  .page-about__story-section img,
  .page-about__values-section img,
  .page-about__why-choose-us-section img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

@media (max-width: 549px) {
  .page-about__main-title {
    font-size: 1.8rem;
  }
  .page-about__section-title {
    font-size: 1.6rem;
  }
  .page-about__cta-title {
    font-size: 1.8rem;
  }
  .page-about__value-icon {
    max-width: 200px; /* Ensure it respects min-width 200px */
  }
}