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

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

.page-about h1, .page-about h2, .page-about h3 {
  color: #8B0000; /* Deep Red */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about h1 {
  font-size: 2.8em;
  text-align: center;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-about h3 {
  font-size: 1.6em;
  color: #8B0000;
}

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

.page-about a {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
}

.page-about a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-about .hero-banner {
  position: relative;
  width: 100%;
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Deep Red to Gold gradient */
  overflow: hidden;
}

.page-about .hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-about .hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  padding: 0 20px;
}

.page-about .hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-about .hero-content p {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-about .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
}

.page-about .cta-button:hover {
  background: #8B0000; /* Deep Red */
  color: #FFD700; /* Gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: #FFD700;
}

.page-about section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-about section:last-of-type {
  border-bottom: none;
}

.page-about .introduction-section, .page-about .history-section, .page-about .team-section, .page-about .vision-section {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 40px;
}

.page-about .values-section {
  background-color: #fefefe;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 40px;
}

.page-about .content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-about .value-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about .value-item h3 {
  color: #8B0000;
  margin-top: 0;
  font-size: 1.5em;
}

/* FAQ Section */
.page-about .faq-section {
  background-color: #f0f2f5;
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 40px;
}

.page-about .faq-list {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #8B0000;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px;
  border-top: 1px solid #e0e0e0;
}

.faq-item.active .faq-answer p {
  margin-bottom: 0;
}

.page-about .cta-final-section {
  text-align: center;
  background-color: #8B0000; /* Deep Red */
  color: #ffffff;
  padding: 80px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-about .cta-final-section h2 {
  color: #FFD700; /* Gold */
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-about .cta-final-section p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-about .cta-final-section .cta-button.primary {
  background: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  margin-right: 20px;
  border: 2px solid #FFD700;
}

.page-about .cta-final-section .cta-button.primary:hover {
  background: #ffffff;
  color: #8B0000;
  border-color: #ffffff;
}

.page-about .cta-final-section .cta-button.secondary {
  background: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-about .cta-final-section .cta-button.secondary:hover {
  background: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about h1 {
    font-size: 2.5em;
  }
  .page-about .hero-content p {
    font-size: 1.2em;
  }
  .page-about h2 {
    font-size: 2em;
  }
  .page-about h3 {
    font-size: 1.4em;
  }
  .page-about .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-about .hero-banner {
    padding: 60px 0;
  }
  .page-about .hero-content h1 {
    font-size: 2em;
  }
  .page-about .hero-content p {
    font-size: 1em;
  }
  .page-about h2 {
    font-size: 1.8em;
  }
  .page-about h3 {
    font-size: 1.3em;
  }
  .page-about section {
    padding: 40px 0;
  }
  .page-about .cta-button {
    display: block;
    margin: 15px auto;
    width: fit-content;
  }
  .page-about .cta-final-section .cta-button.primary {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .faq-question {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }
  .faq-question h3 {
    margin-bottom: 8px;
  }
  .faq-toggle {
    align-self: flex-end;
    margin-top: -30px;
  }
  .faq-answer {
    padding: 0 12px;
  }
  .faq-item.active .faq-answer {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .page-about h1 {
    font-size: 1.8em;
  }
  .page-about h2 {
    font-size: 1.6em;
  }
  .page-about p {
    font-size: 0.95em;
  }
  .page-about .hero-image {
    border-radius: 8px;
  }
  .page-about .cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-about .cta-final-section h2 {
    font-size: 2em;
  }
  .page-about .cta-final-section p {
    font-size: 1.1em;
  }
}