:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f8f8;
  --background-dark: #222222;
  --border-color: #e0e0e0;
}

.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

.page-about .hero-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

.page-about .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-about .cta-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--text-light);
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid var(--secondary-color); /* Ensure contrast */
}

.page-about .cta-button:hover {
  background: #6a0000; /* Manually darkened */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about .cta-button.secondary-cta {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.page-about .cta-button.secondary-cta:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.page-about section {
  padding: 60px 0;
  background-color: var(--background-light);
  border-bottom: 1px solid var(--border-color);
}

.page-about section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-about .section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

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

.page-about .content-wrapper.reverse {
  flex-direction: row-reverse;
}

.page-about .text-content {
  flex: 1;
  font-size: 1.1em;
}

.page-about .text-content p {
  margin-bottom: 15px;
}

.page-about .text-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-about .text-content li {
  margin-bottom: 8px;
}

.page-about .image-content {
  flex: 1;
  text-align: center;
}

.page-about .content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
}

.page-about .timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px 0;
}

.page-about .timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
  transform: translateX(-50%);
}

.page-about .timeline-item {
  width: 50%;
  padding: 20px 30px;
  position: relative;
  box-sizing: border-box;
}

.page-about .timeline-item:nth-child(odd) {
  align-self: flex-start;
  text-align: right;
  padding-right: 60px;
}

.page-about .timeline-item:nth-child(even) {
  align-self: flex-end;
  text-align: left;
  padding-left: 60px;
}

.page-about .timeline-item::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--secondary-color);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  top: 26px;
  z-index: 1;
}

.page-about .timeline-item:nth-child(odd)::before {
  right: -8px;
}

.page-about .timeline-item:nth-child(even)::before {
  left: -8px;
}

.page-about .timeline-item h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

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

.page-about .commitment-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-about .commitment-item:hover {
  transform: translateY(-5px);
}

.page-about .commitment-icon {
  width: 200px; /* Enforce min size */
  height: 200px; /* Enforce min size */
  margin-bottom: 20px;
  object-fit: contain;
}

.page-about .commitment-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

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

.page-about .product-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-about .product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-about .product-card h3 {
  font-size: 1.4em;
  margin: 20px 15px 10px;
  color: var(--secondary-color);
}

.page-about .product-card h3 a.page-about.product-link {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about .product-card h3 a.page-about.product-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-about .product-card p {
  padding: 0 15px 20px;
  font-size: 0.95em;
  color: #555555;
}

.page-about .section-csr {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-about .section-csr .section-title {
  color: var(--primary-color);
}

.page-about .section-csr .section-title::after {
  background-color: var(--secondary-color);
}

.page-about .section-csr .text-content ul {
  list-style: none;
  padding: 0;
}

.page-about .section-csr .text-content li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.page-about .section-csr .text-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.page-about .section-support {
  text-align: center;
}

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

.page-about .channel-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-about .channel-item h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-about .channel-item p {
  color: #555555;
}

.page-about .channel-item .page-about.link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-about .channel-item .page-about.link:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.page-about .support-cta {
  margin-top: 40px;
  font-size: 1.1em;
  color: var(--text-dark);
}

/* FAQ Styling */
.page-about .section-faq {
  background-color: var(--background-light);
}

.page-about .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--text-dark);
}

.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  color: var(--text-dark);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px;
  border-radius: 0 0 5px 5px;
}

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

.faq-answer p .page-about.link {
  color: var(--secondary-color);
  text-decoration: underline;
}

.faq-answer p .page-about.link:hover {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about .hero-title {
    font-size: 2.5em;
  }

  .page-about .section-title {
    font-size: 2em;
  }

  .page-about .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-about .content-wrapper.reverse {
    flex-direction: column;
  }

  .page-about .image-content {
    margin-top: 30px;
  }

  .page-about .timeline::before {
    left: 18px;
  }

  .page-about .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    text-align: left;
  }

  .page-about .timeline-item:nth-child(odd) {
    padding-right: 20px;
  }

  .page-about .timeline-item:nth-child(odd)::before {
    left: 8px;
    right: auto;
  }

  .page-about .timeline-item:nth-child(even)::before {
    left: 8px;
  }
}

@media (max-width: 768px) {
  .page-about .hero-title {
    font-size: 2em;
  }

  .page-about .hero-description {
    font-size: 1em;
  }

  .page-about .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-about section {
    padding: 40px 0;
  }

  .page-about .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-about .commitment-grid,
  .page-about .product-grid,
  .page-about .support-channels {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .faq-question h3 {
    margin-bottom: 8px;
  }
  
  .faq-toggle {
    align-self: flex-end;
    margin-top: -30px;
  }
}