:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-color-dark-bg: #ffffff;
  --text-color-light-bg: #333333;
  --background-color-dark: #000;
  --background-color-light: #f9f9f9;
  --card-bg-dark-mode: rgba(255, 255, 255, 0.1);
  --border-color-light: #e0e0e0;
}

/* Base styles for the page-about content */
.page-about {
  color: var(--text-color-dark-bg); /* Body background is dark (#000) */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Desktop: Ensure content is not hidden by fixed header */
}

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

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

.page-about__section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-about__main-title {
  font-size: 48px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-about__description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-color-dark-bg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__item-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-about__text {
  font-size: 16px;
  color: var(--text-color-dark-bg);
}

.page-about__hero-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #330000 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Override initial padding-top for hero section specifically */
}

.page-about__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:99ok4,abstract_pattern,luxury,dark_overlay]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-about__hero-section .page-about__container {
  position: relative;
  z-index: 1;
}

.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-about__btn-primary {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.page-about__btn-primary:hover {
  background: darken(var(--primary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

.page-about__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-about__brand-introduction {
  background: #1a1a1a;
}

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

.page-about__content-item {
  background: var(--card-bg-dark-mode);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

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

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

.page-about__why-choose-us {
  background: var(--secondary-color);
  background: linear-gradient(135deg, var(--secondary-color) 0%, #660000 100%);
  color: var(--text-color-dark-bg);
}

.page-about__dark-section .page-about__section-title {
  color: var(--primary-color);
}

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

.page-about__feature-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__feature-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.25);
}

.page-about__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-about__card-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__commitment {
  background: #1a1a1a;
}

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

.page-about__commitment-item {
  background: var(--card-bg-dark-mode);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-about__faq-section {
  background: #0d0d0d;
}

.page-about__dark-bg-alt .page-about__section-title {
  color: var(--primary-color);
}

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

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  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.1);
}

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

.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  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: var(--text-color-dark-bg);
  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 20px;
  opacity: 0;
  color: var(--text-color-dark-bg);
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 0 0 5px 5px;
}

.page-about__faq-answer p {
  margin: 0;
  padding: 0;
  color: var(--text-color-dark-bg);
}

.page-about__latest-news {
  background: #1a1a1a;
}

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

.page-about__blog-item {
  background: var(--card-bg-dark-mode);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

.page-about__blog-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin-bottom: 15px;
}

.page-about__blog-item-title {
  font-size: 20px;
  color: var(--primary-color);
  margin: 0 20px 10px;
  font-weight: bold;
  line-height: 1.3;
}

.page-about__blog-item-excerpt {
  font-size: 15px;
  color: var(--text-color-dark-bg);
  margin: 0 20px 15px;
}

.page-about__blog-item-date {
  font-size: 13px;
  color: #999;
  display: block;
  margin: 0 20px;
}

.page-about__view-all-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-about__section-title {
    font-size: 32px;
  }
  .page-about__main-title {
    font-size: 42px;
  }
  .page-about__description {
    font-size: 17px;
  }
  .page-about__item-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .page-about {
    padding-top: 100px; /* Mobile: Ensure content is not hidden by fixed header */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__section-padding {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-about__main-title {
    font-size: 36px;
  }
  .page-about__description {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .page-about__item-title {
    font-size: 20px;
  }
  .page-about__text {
    font-size: 15px;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__cta-button {
    padding: 12px 30px !important;
    font-size: 16px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about__content-item,
  .page-about__feature-card,
  .page-about__commitment-item,
  .page-about__blog-item {
    padding: 20px;
  }
  .page-about__image,
  .page-about__feature-icon,
  .page-about__blog-thumbnail {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-about__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-about__faq-question h3 {
    font-size: 16px;
    width: calc(100% - 40px);
  }
  .page-about__faq-toggle {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }
  .page-about__faq-answer {
    padding: 0 15px;
  }
  .page-about__faq-item.active .page-about__faq-answer {
    padding: 15px !important;
  }
  .page-about__blog-item-title {
    font-size: 18px;
    margin: 0 15px 10px;
  }
  .page-about__blog-item-excerpt,
  .page-about__blog-item-date {
    margin: 0 15px 15px;
    font-size: 14px;
  }
  .page-about__view-all-button-wrapper {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-about__section-title {
    font-size: 24px;
  }
  .page-about__main-title {
    font-size: 30px;
  }
  .page-about__hero-section {
    padding: 60px 0;
  }
  .page-about__feature-icon {
    width: 80px;
    height: 80px;
  }
}

/* Contrast Fixes - should not be needed with proper color selection */
.page-about__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-about__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}