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

.page-about__highlight {
  color: #DC143C;
}

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

.page-about__hero {
  background: linear-gradient(135deg, #FFD700, #DC143C);
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.page-about__hero-description {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #eee;
}

.page-about__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-about__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-about__btn--primary {
  background-color: #FFD700;
  color: #DC143C; /* Dark red for text on gold background */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-about__btn--secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid #fff;
}

.page-about__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.page-about__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  background-color: #FFD700;
  color: #DC143C;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-about__btn--large:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-about__section {
  padding: 60px 0;
  text-align: center;
}

.page-about__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333;
  position: relative;
  padding-bottom: 10px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #DC143C;
  border-radius: 2px;
}

.page-about__about-us {
  background-color: #fff;
}

.page-about__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-about__image-wrapper {
  flex: 1;
  min-width: 300px;
}

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

.page-about__text-content {
  flex: 2;
  min-width: 300px;
}

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

.page-about__link {
  color: #DC143C;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-about__link:hover {
  color: #a00f2e;
}

.page-about__vision-mission {
  background-color: #f0f0f0;
}

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

.page-about__card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-about__card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-about__card-title {
  font-size: 1.8em;
  color: #DC143C;
  margin-bottom: 15px;
}

.page-about__card p {
  color: #666;
  font-size: 1em;
}

.page-about__core-values {
  background-color: #fff;
}

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

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

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

.page-about__value-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.page-about__value-item h4 {
  font-size: 1.4em;
  color: #333;
  margin-bottom: 10px;
}

.page-about__value-item p {
  color: #777;
  font-size: 0.95em;
}

.page-about__cta {
  background: linear-gradient(45deg, #DC143C, #FFD700);
  color: #fff;
  padding: 80px 0;
}

.page-about__cta-content {
  max-width: 800px;
}

.page-about__cta .page-about__section-title {
  color: #fff;
}

.page-about__cta .page-about__section-title::after {
  background-color: #FFD700;
}

.page-about__cta p {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #eee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__hero-title {
    font-size: 2.5em;
  }
  .page-about__hero-description {
    font-size: 1.2em;
  }
  .page-about__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-about__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-about__text-content {
    order: 2;
  }
  .page-about__image-wrapper {
    order: 1;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section-title {
    font-size: 1.8em;
  }
  .page-about__card-title {
    font-size: 1.5em;
  }
  .page-about__cta p {
    font-size: 1.1em;
  }
}