.page-about {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
}

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

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

.page-about__dark-section {
  background-color: #0A0A0A; /* Background */
}

.page-about__section-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD36B; /* Glow */
  line-height: 1.2;
}

.page-about__subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-about__main-title {
  font-weight: 700;
  text-align: center;
  color: #FFD36B; /* Glow */
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-about__description {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #FFF6D6;
}

.page-about__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.page-about__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-about__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

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

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

.page-about__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  border: 2px solid transparent;
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #FFE082 0%, #E6B02A 100%);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-about__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B;
}

.page-about__btn-secondary:hover {
  background: rgba(255, 211, 107, 0.1);
  color: #FFF6D6;
}

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

.page-about__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
}

.page-about__card-title {
  font-size: 24px;
  font-weight: 600;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
}

.page-about__content-area {
  max-width: 1000px;
  margin: 0 auto;
  color: #FFF6D6;
}

.page-about__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.7;
  color: #FFF6D6;
}

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

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

.page-about__team-member {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
}

.page-about__team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid #FFD36B;
}

.page-about__member-name {
  font-size: 22px;
  font-weight: 600;
  color: #F2C14E; /* Primary */
  margin-bottom: 5px;
}

.page-about__member-role {
  font-size: 16px;
  color: #FFF6D6;
  margin-bottom: 15px;
}

.page-about__member-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #FFF6D6;
}

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

.page-about__product-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
  display: flex;
  flex-direction: column;
}

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

.page-about__product-title {
  font-size: 24px;
  font-weight: 600;
  color: #F2C14E; /* Primary */
  margin-bottom: 10px;
}

.page-about__btn-link {
  display: inline-block;
  margin-top: auto;
  padding: 10px 20px;
  background: #F2C14E;
  color: #111111;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.page-about__btn-link:hover {
  background: #FFD36B;
}

.page-about__sub-title {
  font-size: 26px;
  font-weight: 600;
  color: #F2C14E; /* Primary */
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: left;
}

.page-about__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-about__ordered-list li {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-about__ordered-list li strong {
  color: #FFD36B;
}

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

details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  color: #FFF6D6;
}

details.page-about__faq-item summary.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-about__faq-item summary.page-about__faq-question::-webkit-details-marker {
  display: none;
}

details.page-about__faq-item summary.page-about__faq-question:hover {
  background: rgba(242, 193, 78, 0.1);
}

.page-about__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD36B; /* Glow */
}

.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F2C14E; /* Primary */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-about__faq-item .page-about__faq-answer {
  padding: 0 25px 20px;
  background: #0A0A0A; /* Background */
  border-radius: 0 0 10px 10px;
  color: #FFF6D6;
  font-size: 16px;
}

.page-about__contact-info {
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
  color: #FFF6D6;
}

.page-about__contact-info p {
  margin-bottom: 10px;
}

.page-about__contact-info strong {
  color: #F2C14E;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
  .page-about__section-title {
    font-size: 34px;
  }
  .page-about__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-about__hero-content {
    padding: 30px 20px;
  }
  .page-about__card-title, .page-about__product-title {
    font-size: 22px;
  }
  .page-about__sub-title {
    font-size: 24px;
  }
  .page-about__faq-qtext {
    font-size: 17px;
  }
}

@media (max-width: 849px) {
  .page-about__hero-image {
    object-fit: contain !important; /* Prevent cropping on smaller screens */
    aspect-ratio: unset !important; /* Allow natural aspect ratio */
  }
}

@media (max-width: 768px) {
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-about__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-about__description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .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;
    padding: 12px 20px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  .page-about__text-block p {
    font-size: 15px;
  }
  .page-about__article-figure {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto !important;
  }
  .page-about__team-grid, .page-about__product-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__team-member, .page-about__product-item {
    padding: 20px;
  }
  .page-about__team-avatar {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }
  .page-about__member-name {
    font-size: 20px;
  }
  .page-about__member-role, .page-about__member-bio {
    font-size: 14px;
  }
  .page-about__product-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 15px;
  }
  .page-about__product-title {
    font-size: 20px;
  }
  .page-about__btn-link {
    font-size: 15px;
    padding: 8px 15px;
  }
  .page-about__sub-title {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
  }
  .page-about__ordered-list {
    padding-left: 20px;
  }
  .page-about__ordered-list li {
    font-size: 15px;
  }
  details.page-about__faq-item summary.page-about__faq-question {
    padding: 15px 18px;
  }
  .page-about__faq-qtext {
    font-size: 16px;
  }
  .page-about__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-about__faq-item .page-about__faq-answer {
    padding: 0 18px 15px;
  }
  .page-about__contact-info {
    font-size: 16px;
  }
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}