/* style/about.css */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Main brand color */
}

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

.page-about-hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%); /* Dark gradient for hero */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about-hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Accent color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about-hero-subtitle {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about-hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 30px;
}

.page-about-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-about-title {
  font-size: 2.8em;
  color: #FFD700; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-about-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-about-section p, .page-about-section ul {
  font-size: 1.1em;
  color: #CCCCCC;
  margin-bottom: 20px;
}

.page-about-section ul {
  list-style-type: disc;
  padding-left: 25px;
}

.page-about-section li {
  margin-bottom: 10px;
}

.page-about-flex-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

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

.page-about-content-block {
  flex: 1;
  min-width: 300px;
}

.page-about-image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-about-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about-core-values .page-about-title {
  margin-bottom: 60px;
}

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

.page-about-value-item {
  background-color: #2A313F; /* Slightly lighter dark for card background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about-value-item h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-top: 20px;
  margin-bottom: 15px;
}

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

.page-about-value-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-about-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-about-button-primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-about-button-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-about-button-secondary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-about-button-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-about-cta {
  background-color: #0F131B; /* Even darker background for CTA */
  text-align: center;
  padding: 80px 0;
}

.page-about-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-about-cta .page-about-title {
  color: #FFFFFF;
}

.page-about-cta .page-about-title::after {
  background-color: #FFD700;
}

.page-about-cta p {
  color: #E0E0E0;
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about-hero-title {
    font-size: 2.8em;
  }
  .page-about-hero-subtitle {
    font-size: 1.3em;
  }
  .page-about-title {
    font-size: 2.2em;
  }
  .page-about-flex-container {
    flex-direction: column;
    text-align: center;
  }
  .page-about-flex-container.page-about-reverse-flex .page-about-image-block {
    order: -1; /* Move image above text on small screens for reverse flex */
  }
  .page-about-value-item h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-about-hero {
    padding: 60px 0;
  }
  .page-about-hero-title {
    font-size: 2.2em;
  }
  .page-about-hero-subtitle {
    font-size: 1.1em;
  }
  .page-about-section {
    padding: 40px 0;
  }
  .page-about-title {
    font-size: 1.8em;
  }
  .page-about-values-grid {
    grid-template-columns: 1fr;
  }
  .page-about-value-item {
    padding: 20px;
  }
  .page-about-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-about-hero-title {
    font-size: 1.8em;
  }
  .page-about-hero-subtitle {
    font-size: 1em;
  }
  .page-about-title {
    font-size: 1.5em;
  }
  .page-about-section p, .page-about-section ul {
    font-size: 0.95em;
  }
  .page-about-button {
    width: 100%;
    box-sizing: border-box;
  }
}