.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000; /* Inherit from body */
  padding-top: 120px; /* Spacing for fixed header on desktop */
}

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

.page-about__dark-section {
  background-color: #0d0d0d; /* Slightly lighter dark for sections */
  color: #ffffff;
  padding: 60px 0;
}

.page-about__light-bg {
  background-color: #f8f9fa;
  color: #333333;
  padding: 60px 0;
}

.page-about__hero-section {
  text-align: center;
  padding: 80px 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:about:full 88,about us,banner]');
  background-size: cover;
  background-position: center;
  border-bottom: 5px solid var(--primary-color, #FFD700);
}

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

.page-about__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%;
  box-sizing: border-box;
}

.page-about__btn-primary {
  background-color: var(--primary-color, #FFD700);
  color: #000080; /* Dark blue text for contrast */
  border: 2px solid var(--primary-color, #FFD700);
}

.page-about__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-about__btn-secondary {
  background-color: transparent;
  color: var(--primary-color, #FFD700);
  border: 2px solid var(--primary-color, #FFD700);
}

.page-about__btn-secondary:hover {
  background-color: var(--primary-color, #FFD700);
  color: #000080;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-about__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color, #FFD700);
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-about__light-bg .page-about__section-title {
  color: var(--secondary-color, #000080);
  text-shadow: none;
}

.page-about__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #e0e0e0;
}

.page-about__light-bg .page-about__section-description {
  color: #555555;
}

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

.page-about__text-block {
  flex: 1;
  color: #333333;
}

.page-about__text-block--right {
  text-align: left;
}

.page-about__text-block--left {
  text-align: right;
}

.page-about__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-about__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.page-about__image:hover {
  transform: scale(1.03);
}

.page-about__sub-title {
  font-size: 1.8em;
  color: var(--secondary-color, #000080);
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__light-bg p, .page-about__light-bg li {
  color: #444444;
  font-size: 1.05em;
}

.page-about__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-about__list li {
  margin-bottom: 10px;
}

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

.page-about__feature-card {
  background-color: #1a1a1a; /* Darker background for cards in dark section */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-about__feature-card:hover {
  transform: translateY(-10px);
  background-color: #2a2a2a;
}

.page-about__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px var(--primary-color, #FFD700));
}

.page-about__feature-card .page-about__card-title {
  font-size: 1.5em;
  color: var(--primary-color, #FFD700);
  margin-bottom: 15px;
}

.page-about__feature-card p {
  color: #e0e0e0;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-about__feature-card .page-about__card-link {
  display: inline-block;
  color: var(--primary-color, #FFD700);
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.page-about__feature-card .page-about__card-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color, #FFD700);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.page-about__feature-card .page-about__card-link:hover::after {
  transform: scaleX(1);
}

.page-about__product-category {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-about__product-category:last-child {
  margin-bottom: 0;
}

.page-about__product-category--reverse {
  flex-direction: row-reverse;
}

.page-about__product-category .page-about__image-wrapper {
  flex: 1;
  min-width: 40%;
}

.page-about__product-category .page-about__text-block {
  flex: 1.2;
  min-width: 50%;
}

.page-about__product-category .page-about__sub-title {
  color: var(--secondary-color, #000080);
  font-size: 2em;
}

.page-about__product-category p {
  margin-bottom: 25px;
}

.page-about__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: var(--secondary-color, #000080);
  color: #ffffff;
  border-top: 5px solid var(--primary-color, #FFD700);
}

.page-about__cta-section .page-about__section-title {
  color: var(--primary-color, #FFD700);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-about__cta-section .page-about__section-description {
  color: #f0f0f0;
}

.page-about__contact-section {
  text-align: center;
  padding: 60px 0;
  background-color: #f8f9fa;
  color: #333333;
}

.page-about__contact-section .page-about__section-title {
  color: var(--secondary-color, #000080);
}

.page-about__contact-section .page-about__section-description {
  color: #555555;
}

.page-about__contact-info p {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #444444;
}

.page-about__contact-info strong {
  color: var(--secondary-color, #000080);
}

.page-about__contact-info .page-about__btn-primary {
  margin-top: 30px;
  background-color: var(--secondary-color, #000080);
  color: #ffffff;
  border: 2px solid var(--secondary-color, #000080);
}

.page-about__contact-info .page-about__btn-primary:hover {
  background-color: #000066;
  border-color: #000066;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__sub-title {
    font-size: 1.6em;
  }
  .page-about__content-grid, .page-about__product-category {
    flex-direction: column;
    gap: 30px;
  }
  .page-about__text-block--left, .page-about__text-block--right {
    text-align: left;
  }
  .page-about__product-category--reverse {
    flex-direction: column;
  }
  .page-about__image-wrapper {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-about {
    padding-top: 100px !important; /* Spacing for fixed header on mobile */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__cta-button, .page-about__btn-primary, .page-about__btn-secondary,
  .page-about a[class*="button"], .page-about a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px !important;
    font-size: 1em !important;
  }
  .page-about__sub-title {
    font-size: 1.4em;
  }
  .page-about__light-bg p, .page-about__light-bg li {
    font-size: 1em;
  }
  .page-about__feature-card {
    padding: 25px;
  }
  .page-about__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-about__product-category .page-about__image-wrapper {
    order: -1; /* Image first on mobile for product categories */
  }
  .page-about img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__image-wrapper,
  .page-about__product-category {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-about__hero-section {
    padding: 60px 0;
  }
  .page-about__dark-section, .page-about__light-bg {
    padding: 40px 0;
  }
}