/* General page-about styles */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

/* Fixed header spacing for the first content section */
.page-about__video-section {
  padding-top: 10px; /* Desktop: Adjust based on fixed header height */
  padding-bottom: 60px;
  background-color: #0a0a0a;
}

/* General container styles */
.page-about__container,
.page-about__title-container,
.page-about__brand-container,
.page-about__faq-container,
.page-about__blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section specific styling */
.page-about__title-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #0A2239; /* Dark blue background */
  color: #ffffff;
}

.page-about__brand-section {
  padding: 80px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #f0f0f0;
}

.page-about__faq-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
  color: #f0f0f0;
}

.page-about__blog-section {
  padding: 80px 20px;
  background-color: #0A2239; /* Dark blue background */
  color: #ffffff;
}

/* Headings */
.page-about__main-title {
  font-size: 42px;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__title-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__brand-title,
.page-about__faq-main-title,
.page-about__blog-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: #FFD700; /* Gold for section titles */
}

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

/* Buttons */
.page-about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.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.2);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box; /* Ensure padding is included in width */
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text */
}

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

.page-about__btn-secondary {
  background: #0A2239; /* Dark blue button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

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

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

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

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

.page-about__brand-item-image {
  width: 120px; /* Adjusted to be larger for content, not small icon */
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-about__brand-item-title {
  font-size: 24px;
  color: #FFD700; /* Gold for sub-titles */
  margin-bottom: 15px;
}

.page-about__brand-values-list,
.page-about__brand-advantages-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 20px;
}

.page-about__brand-values-list li,
.page-about__brand-advantages-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #cccccc;
}

.page-about__brand-values-list li::before,
.page-about__brand-advantages-list li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-about__brand-commitment {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

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

.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #1a1a1a; /* Darker background for FAQ items */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #0A2239; /* Dark blue background for question */
  border: 1px solid #1e3a5a;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-about__faq-question:hover {
  background: #1e3a5a;
  border-color: #3f5f82;
}

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

.page-about__faq-toggle {
  font-size: 24px;
  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: 28px;
  height: 28px;
}

.page-about__faq-item.active .page-about__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Plus to 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;
  background: #1a1a1a;
  color: #cccccc;
  border-radius: 0 0 5px 5px;
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
}

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

.page-about__blog-item {
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent white for dark background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
}

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

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

.page-about__blog-link {
  padding: 20px;
  text-decoration: none;
  color: inherit;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}