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

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

.page-about__hero {
  background-color: #2A2E43;
  color: #FFFFFF;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

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

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-about__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-about__section--alt {
  background-color: #FFFFFF;
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-about__section-title {
  font-size: 2.8em;
  color: #2A2E43;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-about__text {
  font-size: 1.1em;
  color: #555555;
  max-width: 900px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-about__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.page-about__button--primary {
  background-color: #FFD700;
  color: #2A2E43;
}

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

.page-about__button--secondary {
  background-color: transparent;
  color: #2A2E43;
  border: 2px solid #FFD700;
}

.page-about__button--secondary:hover {
  background-color: #FFD700;
  color: #2A2E43;
  transform: translateY(-2px);
}

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

.page-about__image--left {
  margin-right: auto;
  margin-left: 0;
}

.page-about__image--right {
  margin-left: auto;
  margin-right: 0;
}

.page-about__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1000px;
  width: 100%;
}

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

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

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

.page-about__feature-title {
  font-size: 1.5em;
  color: #2A2E43;
  margin-bottom: 15px;
}

.page-about__feature-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.7;
}

.page-about__cta-bottom {
  margin-top: 50px;
}

.page-about__cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-about__hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
  }

  .page-about__hero-content {
    text-align: left;
    margin-right: 40px;
  }

  .page-about__hero-title {
    font-size: 4.5em;
  }

  .page-about__hero-subtitle {
    font-size: 1.6em;
  }

  .page-about__section .page-about__container {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 60px;
  }

  .page-about__section:nth-of-type(odd) .page-about__container {
    flex-direction: row;
  }

  .page-about__section:nth-of-type(even) .page-about__container {
    flex-direction: row-reverse;
  }

  .page-about__section-title {
    text-align: left;
  }

  .page-about__text {
    text-align: left;
    margin-bottom: 0;
  }

  .page-about__image {
    width: 45%;
    max-width: none;
  }

  .page-about__image--left {
    margin-right: 0;
    margin-left: auto;
  }

  .page-about__image--right {
    margin-left: 0;
    margin-right: auto;
  }

  .page-about__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-about__feature-item {
    text-align: left;
  }

  .page-about__feature-icon {
    margin-left: 0;
  }

  .page-about__cta-group {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .page-about__hero-title {
    font-size: 5em;
  }

  .page-about__hero-subtitle {
    font-size: 1.8em;
  }

  .page-about__section-title {
    font-size: 3.5em;
  }

  .page-about__features {
    grid-template-columns: repeat(4, 1fr);
  }
}