.page-about {
  color: #ffffff; /* Body background is dark, so text is light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Inherit from body */
}

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

/* --- General Section Styling --- */
.page-about__title-section,
.page-about__brand-section,
.page-about__faq-section,
.page-about__blog-section {
  padding: 80px 0;
  position: relative;
}

/* Fixed header offset for the first content section */
.page-about__title-section {
  padding-top: 120px; /* Adjust based on shared header height */
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.9));
  text-align: center;
}

.page-about__dark-section {
  background-color: #1A1A1A; /* Auxiliary color as dark background */
  color: #ffffff;
}

.page-about__light-bg {
  background-color: #f0f0f0; /* Light background for contrast */
  color: #333333;
}

.page-about__light-bg h2,
.page-about__light-bg h3 {
  color: #1A1A1A;
}

.page-about__light-bg a {
  color: #FFD700;
}

.page-about__light-bg a:hover {
  color: #e6c200;
}

/* --- Titles --- */
.page-about__main-title {
  font-size: 48px;
  font-weight: bold;
  color: #FFD700; /* Primary brand color */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__title-description {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-about__brand-title,
.page-about__faq-main-title,
.page-about__blog-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
  color: #FFD700; /* Primary brand color */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* --- CTA Buttons --- */
.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-about__cta-buttons--center {
  margin-top: 50px;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__cta-button--primary {
  background: #FFD700; /* Primary brand color */
  color: #1A1A1A;
}

.page-about__cta-button--primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button--secondary {
  background: #1A1A1A; /* Auxiliary brand color */
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-about__cta-button--secondary:hover {
  background: #000000;
  color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* --- Brand Section --- */
.page-about__brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__brand-item {
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent white on dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-about__brand-item-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-about__brand-item-text {
  font-size: 16px;
  color: #f0f0f0;
}

.page-about__brand-commitment-text {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 60px auto 0 auto;
  color: #f0f0f0;
  line-height: 1.8;
}

/* --- FAQ Section --- */
.page-about__faq-section {
  background-color: #0d0d0d; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

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

.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.08); /* Light transparent background */
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-about__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-about__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none;
}

.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-about__faq-item.active .page-about__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Optional: rotate for 'x' effect */
}

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.03); /* Slightly darker transparent background */
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 2000px !important; /* Sufficiently large for content */
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 8px 8px;
}

.page-about__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}

/* --- Blog Section --- */
.page-about__blog-section {
  background-color: #f0f0f0;
  color: #333333;
}

.page-about__blog-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: -40px auto 60px auto;
  color: #555555;
}

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

.page-about__blog-item {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-about__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-about__blog-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.page-about__blog-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-about__blog-item-content {
  padding: 20px;
}

.page-about__blog-item-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1A1A1A;
  transition: color 0.3s ease;
}

.page-about__blog-link:hover .page-about__blog-item-title {
  color: #FFD700;
}

.page-about__blog-item-excerpt {
  font-size: 15px;
  color: #555555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.page-about__blog-item-date {
  font-size: 14px;
  color: #888888;
  display: block;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 40px;
  }
  .page-about__brand-title,
  .page-about__faq-main-title,
  .page-about__blog-title {
    font-size: 32px;
  }
  .page-about__brand-item-title {
    font-size: 22px;
  }
  .page-about__blog-item-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .page-about__title-section {
    padding-top: 100px !important; /* Mobile adjust for fixed header */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-about__title-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-about__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
  }

  .page-about__container {
    padding: 0 15px;
  }

  .page-about__brand-section,
  .page-about__faq-section,
  .page-about__blog-section {
    padding: 60px 0;
  }

  .page-about__brand-title,
  .page-about__faq-main-title,
  .page-about__blog-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .page-about__brand-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__brand-item {
    padding: 25px;
  }

  .page-about__brand-image {
    max-width: 200px;
  }

  .page-about__brand-item-title {
    font-size: 20px;
  }

  .page-about__brand-item-text {
    font-size: 15px;
  }

  .page-about__brand-commitment-text {
    font-size: 16px;
    margin-top: 40px;
  }

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

  .page-about__faq-question h3 {
    font-size: 16px;
  }

  .page-about__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

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

  .page-about__blog-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .page-about__blog-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__blog-item-image {
    height: 180px;
  }

  .page-about__blog-item-title {
    font-size: 18px;
  }

  .page-about__blog-item-excerpt {
    font-size: 14px;
  }

  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !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;
    overflow: hidden !important;
  }
  
  .page-about__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}