/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: var(--bg-dark-1); /* Inherited from shared.css, assumed dark */
}

.page-about__hero-banner {
  width: 100%;
  padding: 80px 20px 40px;
  background: linear-gradient(135deg, #FF4500, #008080); /* Brand colors */
  color: #ffffff;
  text-align: center;
  padding-top: calc(80px + 10px); /* Adjust for fixed header, 10px from requirement */
}

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

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-about__text-link {
  color: #ffd700; /* Gold for emphasis */
  text-decoration: underline;
  font-weight: bold;
}

.page-about__section--padded {
  padding: 60px 20px;
}

.page-about__dark-section {
  background-color: rgba(0, 0, 0, 0.2); /* Slightly darker background for contrast */
  color: #ffffff;
}

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

.page-about__section-title {
  font-size: 2.5em;
  color: #FF4500; /* Brand primary color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #008080; /* Brand secondary color */
  border-radius: 2px;
}

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

.page-about__content-block--reversed {
  flex-direction: row-reverse;
}

.page-about__content-block p {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-about__content-block strong {
  color: #ffd700; /* Gold for keywords */
}

.page-about__image-full {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

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

.page-about__value-card, .page-about__feature-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for contrast */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-about__value-card:hover, .page-about__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about__icon, .page-about__feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: block;
  object-fit: contain;
}

.page-about__value-title, .page-about__feature-title {
  font-size: 1.5em;
  color: #FF4500; /* Brand primary color */
  margin-bottom: 15px;
}

.page-about__value-description, .page-about__feature-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-about__btn-primary {
  display: inline-block;
  background-color: #FF4500;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FF4500;
  margin-top: 20px;
}

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

.page-about__btn-large {
  padding: 15px 35px;
  font-size: 1.3em;
}

.page-about__btn-small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-about__contact-content p {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-about__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
}