/* style/about.css */

/* --- General Page Styles --- */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Ensure consistency with shared body background */
  padding-top: var(--header-offset, 120px);
}

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

.page-about h1,
.page-about h2,
.page-about h3 {
  color: #FFD700; /* Gold for headings */
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-about h1 {
  font-size: 48px;
  text-align: center;
  font-weight: bold;
}

.page-about h2 {
  font-size: 38px;
  text-align: center;
  font-weight: bold;
}

.page-about h3 {
  font-size: 28px;
  font-weight: 600;
}

.page-about p {
  margin-bottom: 15px;
  font-size: 17px;
}

.page-about a {
  color: #FFD700; /* Link color */
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* --- Hero Section --- */
.page-about__hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:okvip,about_us,hero_banner,professional,dynamic]') no-repeat center center/cover;
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.page-about__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__main-title {
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
  font-size: 19px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-about__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-width: 180px;
  box-sizing: border-box;
}

.page-about__cta-button--primary {
  background-color: #FFD700;
  color: #0A2240;
  border: 2px solid #FFD700;
}

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

.page-about__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-about__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A2240;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --- Brand Section --- */
.page-about__brand-section {
  padding: 80px 20px;
  background-color: #0A2240; /* Dark blue background */
  color: #ffffff;
}

.page-about__brand-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-about__brand-title {
  color: #FFD700;
  margin-bottom: 30px;
}

.page-about__brand-intro-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-about__brand-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__brand-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-about__brand-item-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
  min-width: 200px;
}

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

.page-about__brand-item-description {
  font-size: 16px;
  color: #e0e0e0;
}

/* --- FAQ Section --- */
.page-about__faq-section {
  padding: 80px 20px;
  background-color: #000000; /* Black background */
  color: #ffffff;
}

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

.page-about__faq-main-title {
  color: #FFD700;
  margin-bottom: 30px;
}

.page-about__faq-intro-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-about__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-about__faq-item {
  background-color: #0A2240; /* Dark blue for FAQ items */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.page-about__faq-item:hover {
  background-color: #1a3a60;
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid 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: #ffffff; /* White text for question */
  pointer-events: none;
}

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

.page-about__faq-item.active .page-about__faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.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;
  color: #e0e0e0;
  background-color: #0A2240;
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__faq-answer p {
  margin-bottom: 0;
  font-size: 16px;
  color: #e0e0e0;
}

/* --- Call to Action Section (Bottom) --- */
.page-about__cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('[GALLERY:bg:1920x1080:okvip,cta_banner,join_now,excitement]') no-repeat center center/cover;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-about__cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-about__cta-title {
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__cta-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-about h1 {
    font-size: 40px;
  }
  .page-about h2 {
    font-size: 32px;
  }
  .page-about h3 {
    font-size: 24px;
  }
  .page-about__hero-section {
    padding: 80px 20px;
  }
  .page-about__brand-content-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-about {
    padding-top: var(--header-offset, 120px) !important;
    font-size: 16px;
    line-height: 1.6;
  }
}