.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from shared.css */
}

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

.page-about__dark-section {
  background-color: #0A2342;
  color: #ffffff;
}

.page-about__intro-section {
  padding: 80px 0;
  text-align: center;
}

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

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

.page-about__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #E0B400; /* Gold color for section titles */
  text-align: center;
  margin-bottom: 40px;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.page-about__btn-primary {
  background-color: #E0B400;
  color: #0A2342;
  border: 2px solid #E0B400;
}

.page-about__btn-primary:hover {
  background-color: #ffc107;
  border-color: #ffc107;
  transform: translateY(-2px);
}

.page-about__btn-secondary {
  background-color: transparent;
  color: #E0B400;
  border: 2px solid #E0B400;
}

.page-about__btn-secondary:hover {
  background-color: #E0B400;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-about__vision-mission-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-about__card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

.page-about__card-title {
  font-size: 24px;
  font-weight: bold;
  color: #E0B400;
  margin-bottom: 15px;
}

.page-about__card p {
  font-size: 16px;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-about__values-section {
  padding: 80px 0;
}

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

.page-about__value-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  transition: background-color 0.3s ease;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-about__value-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-about__value-item img {
  
  
  object-fit: contain;
  margin: 0 auto 20px auto;
}

.page-about__value-title {
  font-size: 22px;
  font-weight: bold;
  color: #E0B400;
  margin-bottom: 10px;
}

.page-about__value-item p {
  font-size: 15px;
  color: #cccccc;
  flex-grow: 1;
}

.page-about__security-commitment {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-about__security-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-about__security-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #E0B400;
  padding: 25px;
  border-radius: 8px;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-about__list-title {
  font-size: 20px;
  font-weight: bold;
  color: #E0B400;
  margin-bottom: 10px;
}

.page-about__security-item p {
  font-size: 15px;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-about__customer-service-section {
  padding: 80px 0;
}

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

.page-about__channel-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: background-color 0.3s ease;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-about__channel-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-about__channel-item img {
  
  
  object-fit: contain;
  margin: 0 auto 20px auto;
}

.page-about__channel-title {
  font-size: 22px;
  font-weight: bold;
  color: #E0B400;
  margin-bottom: 10px;
}

.page-about__channel-item p {
  font-size: 15px;
  color: #cccccc;
  flex-grow: 1;
}

.page-about__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.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;
}

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

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #0A2342;
  border: 1px solid #1a1a1a;
  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: #14365c;
  border-color: #2a2a2a;
}

.page-about__faq-question:active {
  background: #1e4975;
}

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

.page-about__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #E0B400;
  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); /* Changed to rotate for a consistent look */
}

.page-about__blog-preview-section {
  padding: 80px 0;
}

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

.page-about__blog-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

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

.page-about__blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-about__blog-card-content {
  padding: 25px;
  flex-grow: 1;
}

.page-about__blog-title {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 25px 10px 25px;
  line-height: 1.3;
}

.page-about__blog-title a {
  color: #E0B400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about__blog-title a:hover {
  color: #ffc107;
}

.page-about__blog-excerpt {
  font-size: 15px;
  color: #cccccc;
  margin: 0 25px 15px 25px;
  flex-grow: 1;
}

.page-about__blog-date {
  font-size: 13px;
  color: #999999;
  display: block;
  margin: 0 25px 25px 25px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: 36px;
  }
  .page-about__section-title {
    font-size: 30px;
  }
  .page-about__card,
  .page-about__value-item,
  .page-about__security-item,
  .page-about__channel-item,
  .page-about__blog-card {
    padding: 25px;
  }
  .page-about__card img {
    height: 300px;
  }
  .page-about__blog-card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-about__container {
    padding: 0 15px;
  }
  .page-about__intro-section,
  .page-about__vision-mission-section,
  .page-about__values-section,
  .page-about__security-commitment,
  .page-about__customer-service-section,
  .page-about__faq-section,
  .page-about__blog-preview-section {
    padding: 50px 0;
  }
  .page-about__main-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-about__description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-about__section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-about__btn-primary,
  .page-about__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 15px;
  }
  .page-about__content-grid,
  .page-about__values-grid,
  .page-about__security-list,
  .page-about__service-channels,
  .page-about__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about__card img {
    height: 250px;
  }
  .page-about__card-title {
    font-size: 20px;
  }
  .page-about__value-item img {
    
    
  }
  .page-about__value-title {
    font-size: 18px;
  }
  .page-about__list-title {
    font-size: 18px;
  }
  .page-about__channel-item img {
    
    
  }
  .page-about__channel-title {
    font-size: 18px;
  }
  .page-about__faq-question {
    padding: 15px;
  }
  .page-about__faq-question h3 {
    font-size: 16px;
  }
  .page-about__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
  .page-about__faq-item.active .page-about__faq-answer {
    padding: 15px !important;
  }
  .page-about__blog-card img {
    
  }
  .page-about__blog-title {
    font-size: 18px;
    margin: 15px 15px 10px 15px;
  }
  .page-about__blog-excerpt {
    font-size: 14px;
    margin: 0 15px 15px 15px;
  }
  .page-about__blog-date {
    margin: 0 15px 15px 15px;
  }
  /* All images responsive for mobile */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__value-item,
  .page-about__security-item,
  .page-about__channel-item,
  .page-about__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left and padding-right are handled by .page-about__container for main sections */
  }
}