.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e;
}

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

.page-about__hero-section {
  position: relative;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
  width: 100%;
  overflow: hidden;
}

.page-about__hero-image {
  width: 100%;
  margin: 0;
}

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

.page-about__main-title {
  font-size: 42px;
  font-weight: bold;
  color: #DAA520; /* Gold brand color for main title */
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-about__intro-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  color: #f0f0f0;
}

.page-about__content-block {
  margin-bottom: 60px;
  padding: 30px;
  background-color: rgba(47, 79, 79, 0.5); /* Semi-transparent dark slate gray */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__section-title {
  font-size: 28px;
  font-weight: bold;
  color: #DAA520; /* Gold brand color for section titles */
  margin-top: 0;
  margin-bottom: 20px;
  text-align: left;
}

.page-about__section-title--light {
  color: #ffffff;
}

.page-about__content-block p,
.page-about__content-block li {
  color: #f0f0f0;
  margin-bottom: 15px;
  font-size: 16px;
}

.page-about__content-block a {
  color: #DAA520;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about__content-block a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.page-about__image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.page-about__values-list {
  list-style: none;
  padding-left: 0;
}

.page-about__values-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #f0f0f0;
}

.page-about__values-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #DAA520;
  font-weight: bold;
}

.page-about__values-list strong {
  color: #DAA520;
}

.page-about__cta-section {
  background-color: #2F4F4F; /* Dark slate gray for CTA section */
  text-align: center;
  padding: 50px;
  border-radius: 10px;
  margin-top: 80px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-about__cta-text {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 30px;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background-color: #DAA520;
  color: #ffffff;
  border: 2px solid #DAA520;
}

.page-about__btn-primary:hover {
  background-color: #ffd700;
  border-color: #ffd700;
  transform: translateY(-2px);
}

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

.page-about__btn-secondary:hover {
  background-color: #DAA520;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 36px;
  }

  .page-about__intro-text {
    font-size: 17px;
  }

  .page-about__section-title {
    font-size: 24px;
  }

  .page-about__content-block {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-about__container {
    padding: 20px 15px;
  }

  .page-about__hero-section {
    padding-top: 0 !important;
  }

  .page-about__main-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .page-about__intro-text {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-about__content-block {
    margin-bottom: 40px;
    padding: 20px;
  }

  .page-about__section-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .page-about__content-block p,
  .page-about__content-block li {
    font-size: 15px;
  }

  .page-about__cta-section {
    padding: 40px 20px;
  }

  .page-about__cta-text {
    font-size: 17px;
    margin-bottom: 25px;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 16px;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* General image and container responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-about__section,
  .page-about__content-block,
  .page-about__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}