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

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

.page-about-hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Gradient for hero section */
  padding: 80px 0;
  text-align: center;
}

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

.page-about-subtitle {
  font-size: 1.5em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-about-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-about-image-wrapper {
  flex: 1;
  max-width: 600px;
}

.page-about-hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-about-text-wrapper {
  flex: 1;
  text-align: left;
  padding: 20px;
}

.page-about-text-wrapper p {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-about-highlight {
  color: #E0B400;
  font-weight: bold;
}

.page-about-button {
  display: inline-block;
  background-color: #E0B400; /* Auxiliary color for buttons */
  color: #1A202C; /* Dark text on auxiliary background */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

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

.page-about-section-title {
  font-size: 2.8em;
  color: #E0B400;
  text-align: center;
  margin: 60px 0 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-about-mission-vision {
  padding: 60px 0;
  background-color: #2a3340;
}

.page-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .page-about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-about-hero-content {
    flex-direction: row;
    text-align: left;
  }
  .page-about-text-wrapper {
    padding: 0 20px;
  }
}

.page-about-card {
  background-color: #1A202C;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-about-card:hover {
  transform: translateY(-5px);
}

.page-about-card h3 {
  color: #E0B400;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-about-card p {
  color: #cccccc;
  font-size: 1em;
}

.page-about-section-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-about-why-choose-us {
  padding: 60px 0;
  background-color: #1A202C;
}

.page-about-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .page-about-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-about-feature-item {
  background-color: #2a3340;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.page-about-feature-item:hover {
  background-color: #3b4554;
}

.page-about-feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E0B400);
}

.page-about-feature-item h3 {
  color: #E0B400;
  font-size: 1.6em;
  margin-bottom: 15px;
}

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

.page-about-cta-banner {
  background-color: #2a3340;
  padding: 80px 0;
  text-align: center;
}

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

.page-about-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

/* Responsive adjustments */
@media (max-width: 600px) {
  .page-about-title {
    font-size: 2.5em;
  }
  .page-about-subtitle {
    font-size: 1.2em;
  }
  .page-about-section-title {
    font-size: 2em;
    margin: 40px 0 30px;
  }
  .page-about-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about-hero-content {
    flex-direction: column;
  }
  .page-about-text-wrapper {
    text-align: center;
    padding: 0 10px;
  }
  .page-about-grid, .page-about-features-grid {
    grid-template-columns: 1fr;
  }
  .page-about-buttons {
    flex-direction: column;
    align-items: center;
  }
}