.page-about {
  background-color: var(--site-bg, #0A0A0A);
  color: #FFF6D6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-about__hero-section {
  padding-top: 10px; /* Small top padding, assuming body handles header offset */
  background: linear-gradient(180deg, rgba(242, 193, 78, 0.1) 0%, rgba(10, 10, 10, 0) 100%), #0A0A0A;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}

.page-about__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
}

.page-about__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-about__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-about__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2C14E; /* Main color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-about__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  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, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

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

.page-about__btn-secondary:hover {
  background: rgba(255, 211, 107, 0.1);
  color: #F2C14E;
  border-color: #F2C14E;
  transform: translateY(-2px);
}

.page-about__section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background color */
  border-bottom: 1px solid #3A2A12; /* Border color */
}

.page-about__section:last-of-type {
  border-bottom: none;
}

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

.page-about__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(242, 193, 78, 0.3);
}

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

.page-about__text-block {
  flex: 1;
}

.page-about__text-main p {
  margin-bottom: 15px;
  color: #FFF6D6; /* Text Main */
  font-size: 1.05em;
}

.page-about__image-block {
  flex: 1;
  min-width: 300px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.page-about__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-about__milestones-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-about__milestones-list li {
  background: #111111; /* Card BG */
  border-left: 4px solid #F2C14E;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #FFF6D6;
  font-size: 1.05em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.page-about__products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-about__product-card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.2);
}

.page-about__product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #3A2A12;
}

.page-about__card-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin: 20px 10px 10px;
}

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

.page-about__card-title a:hover {
  color: #FFD36B;
  text-decoration: underline;
}

.page-about__card-description {
  font-size: 0.95em;
  color: #FFF6D6;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-about__read-more {
  display: inline-block;
  color: #FFD36B;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  border: 1px solid #FFD36B;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.page-about__read-more:hover {
  background: #FFD36B;
  color: #111111;
}

.page-about__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-about__cta-center .page-about__btn-primary {
  max-width: 400px;
}

.page-about__faq-list {
  margin-top: 40px;
}

details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border color */
  overflow: hidden;
  background: #111111; /* Card BG */
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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;
  color: #F2C14E;
  font-weight: 600;
  font-size: 1.1em;
}

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;
  line-height: 1.5;
  text-align: left;
}

.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD36B; /* Glow color */
  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 color */
  border-radius: 0 0 8px 8px;
  color: #FFF6D6;
  font-size: 1em;
}

details.page-about__faq-item[open] summary.page-about__faq-question {
  background: rgba(242, 193, 78, 0.15);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-about__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-about__image-block {
    order: -1; /* Image first on smaller screens */
    max-width: 600px;
    margin: 0 auto 30px auto;
  }
  .page-about__content-wrapper:nth-child(even) .page-about__image-block {
    order: -1;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: 10px; /* Consistent small top padding */
    padding-bottom: 30px;
  }
  .page-about__hero-image img {
    object-fit: contain !important; /* Mobile: contain to prevent cropping */
    aspect-ratio: unset !important; /* Mobile: unset aspect ratio */
    max-height: 300px; /* Limit height on mobile */
  }
  .page-about__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }
  .page-about__description {
    font-size: 1em;
    margin-bottom: 20px;
    padding: 0 10px;
  }
  .page-about__cta-buttons {
    flex-direction: column; /* Buttons stack vertically */
    gap: 15px;
    padding: 0 15px; /* Add padding to container */
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px; /* Adjust padding for mobile */
    font-size: 1em;
  }

  .page-about__section {
    padding: 40px 0;
  }
  .page-about__container {
    padding: 0 15px; /* Smaller padding for mobile */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 30px;
  }
  .page-about__content-wrapper {
    gap: 20px;
  }
  .page-about__text-main p {
    font-size: 0.95em;
  }
  .page-about__image-block {
    min-width: unset;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .page-about__image-block img,
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-about__products-grid {
    grid-template-columns: 1fr; /* Single column for products */
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .page-about__product-card img {
    
  }
  .page-about__card-title {
    font-size: 1.2em;
  }
  .page-about__faq-item {
    margin-bottom: 10px;
    border-radius: 5px;
  }
  details.page-about__faq-item summary.page-about__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-about__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-about__faq-item .page-about__faq-answer {
    padding: 0 20px 15px;
  }
  .page-about__read-more {
    font-size: 0.85em;
    padding: 6px 12px;
  }
  .page-about__cta-center .page-about__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
  }
  .page-about__milestones-list li {
    padding: 12px 15px;
    font-size: 1em;
  }
  .page-about__content-area, .page-about__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-about__dark-bg {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
}