.page-about {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-about__hero-section {
  background: linear-gradient(135deg, #FFD70030, #8B000030); /* Light gradient background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-about__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__hero-title {
  font-size: 3.2em;
  color: #8B0000; /* Deep red for prominent title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: 1.3em;
  color: #555555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-about__button--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-about__button--primary:hover {
  background-color: #e6c200;
  color: #6a0000;
}

.page-about__button--secondary {
  background-color: transparent;
  color: #8B0000; /* Deep red secondary button text */
  border: 2px solid #8B0000;
}

.page-about__button--secondary:hover {
  background-color: #8B0000;
  color: #FFD700;
}

.page-about__button--tertiary {
  background-color: #8B0000; /* Deep red tertiary button */
  color: #FFD700;
  border: 2px solid #8B0000;
}

.page-about__button--tertiary:hover {
  background-color: #6a0000;
  color: #FFD700;
}

.page-about__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 1000px; /* Limit hero image width */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__paragraph {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
  text-align: justify;
}

/* Story Section */
.page-about__story-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-about__story-content,
.page-about__story-image-wrapper {
  flex: 1;
  min-width: 300px;
}

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

.page-about__story-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
}

/* Values Section */
.page-about__values-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-about__value-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-about__value-card:hover {
  transform: translateY(-10px);
}

.page-about__value-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
}

.page-about__value-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__value-description {
  font-size: 1em;
  color: #666666;
}

/* Why Us Section */
.page-about__why-us-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-about__why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-about__why-us-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FFD700;
}

.page-about__why-us-title {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-about__why-us-description {
  font-size: 1em;
  color: #555555;
}

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

.page-about__why-us-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
}

/* Regulatory Section */
.page-about__regulatory-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-about__regulatory-section .page-about__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-about__regulatory-content,
.page-about__regulatory-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-about__regulatory-image-wrapper {
  text-align: center;
}

.page-about__regulatory-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
}

/* CTA Section */
.page-about__cta-section {
  background-color: #8B0000; /* Deep red background for CTA */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.page-about__cta-section .page-about__section-title {
  color: #FFD700; /* Gold title on deep red background */
}

.page-about__cta-section .page-about__paragraph {
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

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

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-about {
    padding-top: var(--header-offset, 120px);
  }
  .page-about__hero-section {
    padding: 60px 20px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__button {
    width: 100%;
    max-width: 300px;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__story-section .page-about__container,
  .page-about__regulatory-section .page-about__container {
    flex-direction: column;
  }
  .page-about__story-content,
  .page-about__story-image-wrapper,
  .page-about__regulatory-content,
  .page-about__regulatory-image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-about__values-grid,
  .page-about__why-us-grid {
    grid-template-columns: 1fr;
  }
  .page-about__story-image,
  .page-about__value-icon,
  .page-about__why-us-image,
  .page-about__regulatory-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
  }
  .page-about__story-image-wrapper,
  .page-about__regulatory-image-wrapper {
    order: -1; /* Image first on mobile for some sections */
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__cta-section .page-about__button {
    max-width: 300px;
    width: 100%;
  }
  /* Ensure all content area images are responsive and not too small */
  .page-about img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Global minimum for content images */
    min-height: 200px; /* Global minimum for content images */
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.5em;
  }
  .page-about__paragraph {
    font-size: 0.95em;
  }
  .page-about__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about__value-title {
    font-size: 1.5em;
  }
  .page-about__why-us-title {
    font-size: 1.3em;
  }
}