.page-about {
  color: #333333; /* Default text color for light backgrounds */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa; /* A very light grey to ensure contrast with default #333333 text */
}

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

.page-about__section-title {
  font-size: 2.5rem;
  color: #26A9E0; /* Brand blue for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-about__hero-section {
  position: relative;
  padding: 100px 20px 80px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background: linear-gradient(135deg, #26A9E0, #1a8cc7); /* Gradient using brand color */
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-about__hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin: 10px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: #EA7C07; /* Login orange for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-about__btn-primary:hover {
  background: #d46b00;
  border-color: #d46b00;
}

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

.page-about__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.page-about__intro-section,
.page-about__products-section,
.page-about__mission-vision-section,
.page-about__faq-section {
  padding: 80px 0;
  background-color: #ffffff; /* Explicitly white background for light sections */
}

.page-about__values-section,
.page-about__security-section,
.page-about__cta-section {
  padding: 80px 0;
  background-color: #26A9E0; /* Brand blue background for dark sections */
  color: #ffffff; /* White text for dark sections */
}

.page-about__values-section .page-about__section-title,
.page-about__security-section .page-about__section-title,
.page-about__cta-section .page-about__cta-title {
  color: #ffffff;
}

.page-about__text-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.page-about__text-block p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.page-about__text-block h3 {
  font-size: 1.8rem;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

.page-about__image--left {
  float: left;
  margin-right: 30px;
  max-width: 40%;
}

.page-about__image--right {
  float: right;
  margin-left: 30px;
  max-width: 40%;
}

.page-about__image--center {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 70%;
}

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

.page-about__card {
  background: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-about__value-title {
  color: #26A9E0; /* Brand blue for value titles */
}

.page-about__value-card p {
  font-size: 1rem;
}

.page-about__product-card .page-about__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-about__product-card .page-about__product-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-about__product-card .page-about__product-title a:hover {
  text-decoration: underline;
}

.page-about__btn-center {
  display: block;
  margin: 40px auto 0;
  max-width: 300px;
}

.page-about__security-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
}

.page-about__security-content p {
  color: #ffffff;
}

.page-about__security-content h3 {
  color: #ffffff;
}

.page-about__mission-title,
.page-about__vision-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-about__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.page-about__faq-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.page-about__faq-question:hover {
  background-color: #eaeaea;
}

.page-about__faq-toggle {
  font-size: 1.5rem;
  font-weight: normal;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

.page-about__faq-item.active .page-about__faq-toggle {
  transform: rotate(45deg);
}

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 20px;
}

.page-about__faq-answer p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.page-about__faq-answer a {
  color: #26A9E0;
  text-decoration: none;
}

.page-about__faq-answer a:hover {
  text-decoration: underline;
}

.page-about__cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #26A9E0, #1a8cc7); /* Gradient using brand color */
  color: #ffffff;
}

.page-about__cta-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

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

/* Clearfix for floated images */
.page-about__intro-section::after,
.page-about__security-content::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 3rem;
  }
  .page-about__section-title {
    font-size: 2.2rem;
  }
  .page-about__image--left,
  .page-about__image--right {
    max-width: 100%;
    float: none;
    margin: 30px auto;
  }
  .page-about__text-block {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 80px 15px 60px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
  }
  .page-about__hero-title {
    font-size: 2.5rem;
  }
  .page-about__hero-description {
    font-size: 1.1rem;
  }
  .page-about__section-title {
    font-size: 1.8rem;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px 0;
    font-size: 1rem;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
    overflow: hidden !important;
  }
  .page-about__values-grid,
  .page-about__product-grid,
  .page-about__mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .page-about__card {
    padding: 20px;
  }
  .page-about__value-title,
  .page-about__product-title {
    font-size: 1.3rem;
  }
  .page-about__faq-question {
    font-size: 1.1rem;
    padding: 15px;
  }
  .page-about__faq-answer {
    padding: 15px;
  }
  .page-about__cta-title {
    font-size: 2rem;
  }
  .page-about__cta-description {
    font-size: 1.1rem;
  }
  .page-about img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__video-section,
  .page-about__video-container,
  .page-about__video-wrapper,
  .page-about__cta-buttons,
  .page-about__button-group,
  .page-about__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-about__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure video section respects header offset on mobile */
  }
  .page-about video,
  .page-about__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2rem;
  }
  .page-about__section-title {
    font-size: 1.6rem;
  }
  .page-about__cta-title {
    font-size: 1.8rem;
  }
  .page-about__image--center {
    max-width: 90%;
  }
}