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

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

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

.page-about__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  animation: page-about__hero-pulse 10s infinite alternate;
}

@keyframes page-about__hero-pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

.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);
  position: relative;
  z-index: 1;
}

.page-about__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.page-about__section {
  padding: 80px 0;
  background-color: #fff;
  margin-bottom: 20px;
}

.page-about__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-about__section-title {
  font-size: 2.5em;
  color: #CC0000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-about__grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-about__grid--reverse {
    grid-template-areas: "image content";
  }
  .page-about__grid--reverse .page-about__grid-item:first-child {
    grid-area: image;
  }
  .page-about__grid--reverse .page-about__grid-item:last-child {
    grid-area: content;
  }
}

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

.page-about__history p, .page-about__values p, .page-about__commitment p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-about__values ul, .page-about__commitment ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-about__values ul li, .page-about__commitment ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23CC0000"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444;
}

.page-about__team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

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

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

.page-about__team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #FFD700;
}

.page-about__team-member h3 {
  color: #CC0000;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-about__team-member p {
  color: #666;
}

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

.page-about__btn--primary {
  background-color: #CC0000;
  color: #fff;
  border: 2px solid #CC0000;
}

.page-about__btn--primary:hover {
  background-color: #a30000;
  border-color: #a30000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__btn--secondary {
  background-color: #FFD700;
  color: #333;
  border: 2px solid #FFD700;
  margin-top: 30px;
}

.page-about__btn--secondary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__hero .page-about__btn {
  margin-top: 20px;
}

.page-about__commitment .page-about__btn {
  margin-top: 30px;
}

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

.page-about__hero .highlight {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }
  .page-about__section-title {
    font-size: 2em;
  }
  .page-about__section {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .page-about__hero {
    padding: 80px 15px;
  }
  .page-about__hero-title {
    font-size: 2.2em;
  }
  .page-about__hero-description {
    font-size: 1em;
  }
  .page-about__section {
    padding: 40px 0;
  }
  .page-about__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-about__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-about__grid--reverse .page-about__grid-item:first-child,
  .page-about__grid--reverse .page-about__grid-item:last-child {
    grid-area: unset;
  }
  .page-about__team-grid {
    grid-template-columns: 1fr;
  }
  .page-about__values ul li, .page-about__commitment ul li {
    font-size: 1em;
  }
}