.page-about {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-about .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0A2239 0%, #1A3A5B 100%); /* Dark blue gradient */
  color: #ffffff;
  overflow: hidden;
}

.page-about .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2; /* Ensure content is above any background effects */
}

.page-about .hero-image {
  width: 100%;
  margin-top: 40px;
  order: 2; /* Image after content on desktop */
}

.page-about .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-about .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  order: 1; /* Content before image on desktop */
}

.page-about .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-about .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700; /* Gold */
  color: #0A2239; /* Dark blue text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-about .cta-button:hover {
  background: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-about section {
  padding: 80px 0;
  background-color: #ffffff;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-about section:nth-of-type(even) {
  background-color: #f2f4f8; /* Light grey-blue for alternating sections */
}

.page-about .section-title {
  font-size: 2.5em;
  color: #0A2239; /* Dark blue */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about .section-subtitle {
  font-size: 1.2em;
  color: #555;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-about .content-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.page-about .content-grid.reverse-grid {
  flex-direction: row-reverse;
}

.page-about .content-grid .text-content {
  flex: 1;
  padding-right: 20px;
}

.page-about .content-grid .image-content {
  flex: 1;
  text-align: center;
}

.page-about .content-grid .image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-about .sub-title {
  font-size: 1.8em;
  color: #0A2239;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-about p {
  margin-bottom: 15px;
  color: #444;
  font-size: 1.05em;
}

.page-about .value-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-about .value-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333;
}

.page-about .value-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  font-size: 1.2em;
}

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

.page-about .feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-about .feature-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
}

.page-about .feature-title {
  font-size: 1.6em;
  color: #0A2239;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-about .feature-item p {
  font-size: 1em;
  color: #555;
}

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

.page-about .product-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-about .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-about .product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-about .product-card .product-title {
  font-size: 1.5em;
  color: #0A2239;
  padding: 20px 20px 10px;
  font-weight: 700;
}

.page-about .product-card .product-title a {
  color: #0A2239;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about .product-card .product-title a:hover {
  color: #FFD700;
}

.page-about .product-card .product-description {
  padding: 0 20px 20px;
  color: #666;
  flex-grow: 1;
}

.page-about .btn-learn-more {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2239;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-about .btn-learn-more:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-about .vision-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about .vision-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
}

.page-about .vision-item h3 {
  font-size: 1.6em;
  color: #0A2239;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-about .vision-item p {
  font-size: 1em;
  color: #555;
}

/* FAQ Styles */
.page-about .faq-list {
  margin-top: 40px;
}

.page-about .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-about .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #0A2239; /* Dark blue background for question */
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-about .faq-question:hover {
  background: #1A3A5B; /* Slightly lighter dark blue on hover */
}

.page-about .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  font-weight: 600;
  color: #ffffff;
}

.page-about .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #FFD700; /* Gold toggle icon */
}

.page-about .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-about .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background: #fdfdfd;
  color: #333;
  padding: 0 25px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.page-about .faq-item.active .faq-answer {
  max-height: 500px; /* Enough to hold content */
  padding: 25px;
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.05);
}

.page-about .faq-answer p {
  margin-bottom: 10px;
  color: #444;
}

.page-about .faq-answer p:last-child {
  margin-bottom: 0;
}

.page-about .text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about .text-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about .hero-title {
    font-size: 2.5em;
  }
  .page-about .hero-description {
    font-size: 1.1em;
  }
  .page-about .section-title {
    font-size: 2em;
  }
  .page-about .section-subtitle {
    font-size: 1em;
  }
  .page-about .content-grid {
    flex-direction: column;
    gap: 40px;
  }
  .page-about .content-grid.reverse-grid {
    flex-direction: column;
  }
  .page-about .content-grid .text-content {
    padding-right: 0;
  }
  .page-about .feature-grid, .page-about .product-grid, .page-about .future-vision-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-about .hero-section {
    padding: 40px 15px;
  }
  .page-about .hero-title {
    font-size: 2em;
  }
  .page-about .hero-description {
    font-size: 1em;
  }
  .page-about .cta-button {
    padding: 15px 35px;
    font-size: 1em;
  }
  .page-about section {
    padding: 60px 0;
  }
  .page-about .section-title {
    font-size: 1.8em;
  }
  .page-about .section-subtitle {
    margin-bottom: 40px;
  }
  .page-about .sub-title {
    font-size: 1.5em;
  }
  .page-about .feature-item, .page-about .product-card, .page-about .vision-item {
    padding: 25px;
  }
  .page-about .feature-title, .page-about .product-title, .page-about .vision-item h3 {
    font-size: 1.4em;
  }
  .page-about .faq-question {
    padding: 15px 20px;
  }
  .page-about .faq-question h3 {
    font-size: 1.1em;
  }
  .page-about .faq-toggle {
    font-size: 1.5em;
  }
  .page-about .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-about .hero-title {
    font-size: 1.6em;
  }
  .page-about .hero-description {
    font-size: 0.9em;
  }
  .page-about .cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-about .section-title {
    font-size: 1.5em;
  }
  .page-about .sub-title {
    font-size: 1.3em;
  }
  .page-about .feature-item img, .page-about .vision-item img {
    max-width: 180px;
  }
}