/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

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

.page-about__content-block,
.page-about__image-block {
  flex: 1;
  min-width: 300px;
}

.page-about__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.page-about__hero {
  position: relative;
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue for better contrast */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.page-about__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-about__hero .page-about__container {
  position: relative;
  z-index: 1;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}

.page-about__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__brand {
  color: #ffc107; /* Gold for brand name */
}

/* Buttons */
.page-about__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-about__btn--primary {
  background-color: #ffc107; /* Gold */
  color: #000; /* Dark text for contrast */
}

.page-about__btn--primary:hover {
  background-color: #e0a800; /* Darker gold */
  transform: translateY(-2px);
}

.page-about__btn--secondary {
  background-color: #007bff; /* Blue */
  color: #fff;
}

.page-about__btn--secondary:hover {
  background-color: #0056b3; /* Darker blue */
  transform: translateY(-2px);
}

.page-about__btn--outline {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-about__btn--outline:hover {
  background-color: #ffc107;
  color: #000;
}

/* Sections */
.page-about__section {
  padding: 60px 0;
}

.page-about__intro {
  background-color: #fff;
  text-align: center;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-about__section-subtitle {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-about__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

/* Vision & Mission */
.page-about__vision-mission {
  background-color: #f1f7ff;
}

/* Values Section */
.page-about__values {
  background-color: #fff;
  text-align: center;
}

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

.page-about__value-item {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-about__value-item:hover {
  transform: translateY(-5px);
}

.page-about__value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #007bff; /* Use primary color for icons if they are SVG */
}

.page-about__value-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-about__value-description {
  font-size: 1em;
  color: #666;
}

/* Why Choose Section */
.page-about__why-choose {
  background-color: #f1f7ff;
}

.page-about__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-about__list-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #555;
}

.page-about__list-item::before {
  content: '✔';
  color: #ffc107; /* Gold checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* CTA Banner */
.page-about__cta-banner {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-about__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-about__cta-banner .page-about__container {
  position: relative;
  z-index: 1;
}

.page-about__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__flex-container {
    flex-direction: column;
  }
  .page-about__flex-container--reverse {
    flex-direction: column;
  }
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title,
  .page-about__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1.1em;
  }
  .page-about__section-title,
  .page-about__cta-title {
    font-size: 1.8em;
  }
  .page-about__section-subtitle {
    font-size: 1.6em;
  }
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }
  .page-about__cta-buttons {
    flex-direction: column;
  }
  .page-about__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title,
  .page-about__cta-title {
    font-size: 1.5em;
  }
  .page-about__btn {
    padding: 10px 20px;
  }
}