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

.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  min-height: 700px;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-about__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.page-about__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken video for text readability */
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-about__hero-title {
  font-size: 3.5rem;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 800px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-about__section {
  padding: 80px 20px;
  text-align: center;
}

.page-about__dark-section {
  background-color: #1a1a1a; /* Dark background */
  color: #ffffff;
}

.page-about__light-bg {
  background-color: #f8f8f8;
  color: #333333;
}

.page-about__section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-about__light-bg .page-about__section-title {
  color: #1E90FF;
  text-shadow: none;
}

.page-about__section-intro {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.8;
}

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

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

.page-about__story-content {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-about__story-text {
  flex: 1;
}

.page-about__story-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.page-about__story-image {
  flex: 0 0 500px;
  max-width: 500px;
}

.page-about__story-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-about__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
}

.page-about__card {
  background-color: #2a2a2a;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-about__light-bg .page-about__card {
  background-color: #ffffff;
  color: #333333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-about__card-title {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__light-bg .page-about__card-title {
  color: #1E90FF;
}

.page-about__card p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-about__card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: auto; /* Push image to bottom if content is short */
}

.page-about__values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  text-align: left;
}

.page-about__value-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-about__value-title {
  font-size: 1.6rem;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-about__value-item p {
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.page-about__product-card {
  background-color: #2a2a2a;
  color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
}

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

.page-about__product-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  flex-grow: 1;
}

.page-about__product-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about__product-title a:hover {
  color: #1E90FF;
}

.page-about__product-card p {
  font-size: 1rem;
  line-height: 1.6;
}

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

.page-about__security-item {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-about__security-item img {
  
  
  object-fit: contain;
  margin-bottom: 15px;
}

.page-about__security-title {
  font-size: 1.6rem;
  color: #1E90FF;
  margin-bottom: 10px;
}

.page-about__security-item p {
  font-size: 1rem;
  line-height: 1.6;
}

.page-about__responsible-content {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-about__responsible-text {
  flex: 1;
}

.page-about__responsible-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-about__responsible-image {
  flex: 0 0 500px;
  max-width: 500px;
}

.page-about__responsible-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-about__advantage-card {
  background-color: #2a2a2a;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-about__advantage-title {
  font-size: 1.6rem;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-about__advantage-card p {
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.page-about__team-member {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-about__team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #1E90FF;
}

.page-about__member-name {
  font-size: 1.8rem;
  color: #1E90FF;
  margin-bottom: 5px;
}

.page-about__member-role {
  font-size: 1.1rem;
  color: #777777;
  margin-bottom: 15px;
}

.page-about__member-description {
  font-size: 1rem;
  line-height: 1.6;
}

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

.page-about__faq-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  background-color: #3a3a3a;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
  background-color: #FFD700;
  color: #1a1a1a;
}

.page-about__faq-question:hover h3 {
  color: #1a1a1a;
}

.page-about__faq-question h3 {
  margin: 0;
  color: #ffffff;
  transition: color 0.3s ease;
}

.page-about__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
}

.page-about__faq-question:hover .page-about__faq-toggle {
  color: #1a1a1a;
}

.page-about__faq-item.active .page-about__faq-question {
  background-color: #FFD700;
  color: #1a1a1a;
}

.page-about__faq-item.active .page-about__faq-question h3 {
  color: #1a1a1a;
}

.page-about__faq-item.active .page-about__faq-toggle {
  transform: rotate(0deg);
  color: #1a1a1a;
}

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

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

.page-about__faq-answer p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-about__faq-button {
  display: inline-block;
  background-color: #1E90FF;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-about__faq-button:hover {
  background-color: #FFD700;
  color: #1a1a1a;
}

.page-about__contact-cta {
  padding: 60px 20px;
  background-color: #f0f0f0;
  color: #333333;
}

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

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

.page-about__btn-primary {
  background-color: #FFD700;
  color: #1a1a1a;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-about__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

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

.page-about__dark-section .page-about__btn-secondary {
  color: #ffffff;
  border-color: #ffffff;
}

.page-about__btn-secondary:hover {
  background-color: #FFD700;
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-about__light-bg .page-about__btn-primary {
  background-color: #1E90FF;
  color: #ffffff;
  border-color: #1E90FF;
  box-shadow: 0 4px 10px rgba(30, 144, 255, 0.4);
}

.page-about__light-bg .page-about__btn-primary:hover {
  background-color: #1a7ae6;
  box-shadow: 0 6px 15px rgba(30, 144, 255, 0.6);
}

.page-about__light-bg .page-about__btn-secondary {
  color: #1E90FF;
  border-color: #1E90FF;
}

.page-about__light-bg .page-about__btn-secondary:hover {
  background-color: #1E90FF;
  color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__hero-title {
    font-size: 2.8rem;
  }
  .page-about__hero-description {
    font-size: 1.1rem;
  }
  .page-about__section-title {
    font-size: 2.2rem;
  }
  .page-about__story-content,
  .page-about__responsible-content {
    flex-direction: column;
  }
  .page-about__story-image,
  .page-about__responsible-image {
    flex: none;
    max-width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-about__hero-section {
    min-height: 500px;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure content is below fixed header on mobile */
  }

  .page-about__hero-title {
    font-size: 2rem;
  }

  .page-about__hero-description {
    font-size: 1rem;
  }

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

  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-about__section {
    padding: 60px 15px;
  }

  .page-about__section-title {
    font-size: 1.8rem;
  }

  .page-about__section-intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-about__grid-layout,
  .page-about__values-list,
  .page-about__products-grid,
  .page-about__security-grid,
  .page-about__advantages-grid,
  .page-about__team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__story-image img,
  .page-about__responsible-image img,
  .page-about__card img,
  .page-about__product-card img,
  .page-about__security-item img,
  .page-about__team-member img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-video-wrapper,
  .page-about__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-about__faq-question,
  .page-about__faq-answer {
    padding: 15px 20px;
  }

  .page-about__faq-question h3 {
    font-size: 1.1rem;
  }

  .page-about__faq-toggle {
    font-size: 1.5rem;
  }

  .page-about__faq-item.active .page-about__faq-answer {
    padding: 15px 20px;
  }

  .page-about__faq-answer p {
    font-size: 0.95rem;
  }

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

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8rem;
  }
  .page-about__section-title {
    font-size: 1.6rem;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}