:root {
  --primary-color: #C61F1F;
  --secondary-color: #E53030;
  --button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  --card-bg: #2A1212;
  --page-bg: #140C0C;
  --text-main: #FFF1E8;
  --border-color: #6A1E1E;
  --gold-color: #F3C54D;
  --deep-red-color: #7E0D0D;
}

.page-about {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Text Main for entire page content */
  background-color: var(--page-bg);
  line-height: 1.6;
}

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

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

.page-about__section:nth-of-type(even) {
  background-color: rgba(42, 18, 18, 0.5); /* Slightly lighter dark for contrast */
}

.page-about__section-title {
  font-size: 2.8em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-about__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-about__highlight {
  color: var(--gold-color);
  font-weight: bold;
}

.page-about a {
  color: var(--gold-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about a:hover {
  color: #FFD700; /* Lighter gold on hover */
  text-decoration: underline;
}

/* HERO Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--page-bg);
}

.page-about__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-about__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-about__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-about__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: bold;
  color: var(--gold-color);
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-about__hero-description {
  font-size: clamp(1em, 2vw, 1.3em);
  color: var(--text-main);
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--gold-color);
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #FFD700 0%, #E59400 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-about__cta-button--explore {
  margin-top: 50px;
  font-size: 1.1em;
}

.page-about__cta-button--final {
  margin-top: 40px;
  font-size: 1.3em;
  padding: 18px 45px;
}

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

.page-about__card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  color: var(--text-main); /* Ensure text in card is light */
}

.page-about__card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
  display: block;
}

.page-about__card-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin: 20px 15px 10px;
  line-height: 1.3;
}

.page-about__card-title a {
  color: var(--gold-color);
  text-decoration: none;
}

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

.page-about__card p {
  font-size: 0.95em;
  padding: 0 15px;
  flex-grow: 1;
}

/* Lists */
.page-about__value-list,
.page-about__security-features,
.page-about__social-initiatives,
.page-about__support-benefits,
.page-about__achievement-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-about__value-list li,
.page-about__security-features li,
.page-about__social-initiatives li,
.page-about__support-benefits li,
.page-about__achievement-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05em;
}

.page-about__value-list li::before,
.page-about__security-features li::before,
.page-about__social-initiatives li::before,
.page-about__support-benefits li::before,
.page-about__achievement-list li::before {
  content: '✓';
  color: var(--gold-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

/* FAQ Section */
details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: var(--text-main);
}

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;
  border-bottom: 1px solid transparent; /* default */
}

details.page-about__faq-item[open] summary.page-about__faq-question {
  border-bottom: 1px solid var(--border-color); /* Separator when open */
}

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-color: rgba(255, 255, 255, 0.05); /* Subtle hover effect */
}

.page-about__faq-qtext {
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--gold-color);
}

.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--gold-color);
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}

details.page-about__faq-item .page-about__faq-answer {
  padding: 0 25px 25px;
  background: rgba(255, 255, 255, 0.03); /* Lighter background for answer */
  border-radius: 0 0 10px 10px;
}

/* Image containers */
.page-about__image-container {
  margin: 40px auto;
  text-align: center;
  max-width: 800px;
}

.page-about__image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about__section-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-about__card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__container {
    padding: 20px 15px;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__hero-image img {
    border-radius: 4px;
  }
  .page-about__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }
  .page-about__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-about__cta-button,
  .page-about__cta-button--explore,
  .page-about__cta-button--final,
  .page-about a[class*="button"],
  .page-about a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1em;
  }
  .page-about__product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__card {
    padding-bottom: 15px;
  }
  .page-about__card img {
    
  }
  .page-about__card-title {
    font-size: 1.3em;
    margin: 15px 10px 8px;
  }
  .page-about__value-list li,
  .page-about__security-features li,
  .page-about__social-initiatives li,
  .page-about__support-benefits li,
  .page-about__achievement-list li {
    font-size: 1em;
    padding-left: 25px;
  }
  details.page-about__faq-item summary.page-about__faq-question {
    padding: 15px 20px;
  }
  .page-about__faq-qtext {
    font-size: 1em;
  }
  .page-about__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
  }
  details.page-about__faq-item .page-about__faq-answer {
    padding: 0 20px 20px;
  }
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .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;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}