.page-about__hero-section {
  background: linear-gradient(135deg, #26A9E0, #1a7bb5);
  color: #ffffff;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-about__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-about__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

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

.page-about__btn-secondary {
  background: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #FFFFFF;
}

.page-about__btn-secondary:hover {
  background: #f0f0f0;
  color: #1a7bb5;
  border-color: #f0f0f0;
}

.page-about__btn-tertiary {
  background: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-top: 15px;
}

.page-about__btn-tertiary:hover {
  background: #26A9E0;
  color: #FFFFFF;
}

.page-about__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-about__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 60px auto;
  line-height: 1.6;
}

.page-about__intro-section,
.page-about__products-section,
.page-about__responsibility-section {
  padding: 80px 0;
}

.page-about__vision-section,
.page-about__why-choose-us,
.page-about__faq-section {
  padding: 80px 0;
  color: #ffffff;
  background: #26A9E0;
}

.page-about__intro-section .page-about__section-title,
.page-about__products-section .page-about__section-title,
.page-about__responsibility-section .page-about__section-title {
  color: #000000;
}

.page-about__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-about__text-block .page-about__paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-about__vision-card,
.page-about__product-card,
.page-about__feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__vision-card:hover,
.page-about__product-card:hover,
.page-about__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-about__vision-icon,
.page-about__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

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

.page-about__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

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

.page-about__product-card .page-about__card-title a:hover {
  color: #26A9E0;
}

.page-about__vision-card .page-about__card-title,
.page-about__feature-card .page-about__card-title {
  color: #ffffff;
}

.page-about__card-description {
  font-size: 1em;
  line-height: 1.6;
  flex-grow: 1;
}

.page-about__product-card .page-about__card-description {
  color: #333333;
}

.page-about__responsibility-section .page-about__paragraph {
  color: #333333;
}

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

.page-about__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-about__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

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

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

.page-about__faq-answer p {
  margin: 0 0 10px 0;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-about__faq-answer a {
  color: #ffffff;
  text-decoration: underline;
}

.page-about__faq-answer a:hover {
  color: #EA7C07;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

/* General image responsiveness */
.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__content-grid {
    grid-template-columns: 1fr;
  }
  .page-about__image-block {
    order: -1; /* Image appears above text on smaller screens */
  }
  .page-about__vision-grid,
  .page-about__products-grid,
  .page-about__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about__btn-tertiary {
    padding: 12px 20px;
    width: 100% !important;
    max-width: 100% !important;
  }
  .page-about__intro-section,
  .page-about__vision-section,
  .page-about__products-section,
  .page-about__why-choose-us,
  .page-about__responsibility-section,
  .page-about__faq-section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__section-subtitle {
    font-size: 0.9em;
    margin: -10px auto 40px auto;
  }
  .page-about__text-block .page-about__paragraph {
    font-size: 1em;
  }
  .page-about__vision-grid,
  .page-about__products-grid,
  .page-about__features-grid {
    grid-template-columns: 1fr;
  }
  .page-about__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about img {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__image-block,
  .page-about__text-block,
  .page-about__product-card,
  .page-about__feature-card,
  .page-about__vision-card,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__faq-question,
  .page-about__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}