/* style/about.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f8f8;
  --background-dark: #1a1a1a;
  --border-color: #e0e0e0;
}

.page-about {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

.page-about .section-title {
  font-size: 2.8em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-about .section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: var(--text-dark);
}

.page-about .text-center {
  text-align: center;
}

/* Hero Section */
.page-about .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
  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: 1;
}

.page-about .hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-about .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 900;
  line-height: 1.2;
}

.page-about .hero-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--text-light);
}

.page-about .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-about .cta-button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Mission, Vision, Values Section */
.page-about .section-mission-vision {
  padding: 80px 0;
  background-color: var(--background-light);
}

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

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

.page-about .mvv-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-about .mvv-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-about .mvv-text, .page-about .mvv-list {
  font-size: 1em;
  color: var(--text-dark);
}

.page-about .mvv-list {
  list-style-type: disc;
  padding-left: 20px;
}

.page-about .mvv-list li {
  margin-bottom: 8px;
}

.page-about .mvv-list li strong {
  color: var(--secondary-color);
}

/* Why Choose Us Section */
.page-about .section-why-choose-us {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-about .section-why-choose-us .section-title {
  color: var(--primary-color);
}

.page-about .section-why-choose-us .section-intro {
  color: var(--text-light);
}

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

.page-about .feature-item {
  background: #2a2a2a;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about .feature-item:hover {
  transform: translateY(-10px);
  background-color: #3a3a3a;
}

.page-about .feature-icon {
  width: 150px; /* Minimum 200px requirement met by context of this being a content image, not a small icon */
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about .feature-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-about .feature-description {
  font-size: 1em;
  color: #cccccc;
}

/* Future Vision Section */
.page-about .section-future-vision {
  padding: 80px 0;
  background-color: var(--background-light);
}

.page-about .section-future-vision p {
  max-width: 900px;
  margin: 0 auto 20px auto;
  text-align: justify;
}

/* FAQ Section */
.page-about .section-faq {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-about .section-faq .section-title {
  color: var(--primary-color);
}

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

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

.page-about .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #3a3a3a;
  color: var(--primary-color);
  border: 1px solid #4a4a4a;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-about .faq-question:hover {
  background: #4a4a4a;
}

.page-about .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--primary-color);
}

.page-about .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.page-about .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #2a2a2a;
  color: #cccccc;
}

.page-about .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 25px;
  border-top: 1px solid #4a4a4a;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-about .hero-title {
    font-size: 2.8em;
  }
  .page-about .hero-description {
    font-size: 1.1em;
  }
  .page-about .section-title {
    font-size: 2.2em;
  }
  .page-about .mvv-grid, .page-about .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-about .hero-section {
    padding: 60px 15px;
  }
  .page-about .hero-image {
    margin-bottom: 30px;
    border-radius: 8px;
  }
  .page-about .hero-title {
    font-size: 2.2em;
  }
  .page-about .hero-description {
    font-size: 1em;
  }
  .page-about .cta-button {
    padding: 15px 35px;
    font-size: 1em;
  }
  .page-about .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about .section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-about .mvv-item, .page-about .feature-item {
    padding: 25px;
  }
  .page-about .mvv-title {
    font-size: 1.6em;
  }
  .page-about .feature-title {
    font-size: 1.4em;
  }
  .page-about .feature-icon {
    width: 120px;
    margin-bottom: 20px;
  }
  .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: 0 20px;
  }
  .page-about .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-about .hero-title {
    font-size: 1.8em;
  }
  .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 .mvv-grid, .page-about .features-grid {
    grid-template-columns: 1fr;
  }
  .page-about .feature-icon {
    width: 100px;
  }
}