.page-about {
  padding-top: 10px; /* Small top padding, main padding-top handled by body in shared.css */
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum image size */
}

.page-about__hero-content {
  max-width: 90%;
  padding: 0 20px;
  z-index: 1;
}

.page-about__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-about__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 150px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-about__btn--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: none;
}

.page-about__btn--primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

.page-about__btn--secondary {
  background-color: #6FA3FF;
  color: #FFFFFF;
  border: 1px solid #6FA3FF;
}

.page-about__btn--secondary:hover {
  background-color: #2F6BFF;
  border-color: #2F6BFF;
  transform: translateY(-2px);
}

.page-about__btn--link {
  color: #2F6BFF;
  text-decoration: underline;
  padding: 0;
  background: none;
  border: none;
  min-width: auto;
}

.page-about__btn--link:hover {
  color: #6FA3FF;
}

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

.page-about__section--dark {
  background-color: #FFFFFF;
  color: #1F2D3D;
}

.page-about__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-about__content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.page-about__text-block {
  flex: 1 1 500px;
  max-width: 600px;
}

.page-about__image-block {
  flex: 1 1 400px;
  max-width: 500px;
}

.page-about__image-block--center {
  text-align: center;
  margin-top: 40px;
}

.page-about__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-about__paragraph {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #1F2D3D;
}

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

.page-about__value-item {
  background-color: #F4F7FB;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border color */
}

.page-about__value-heading {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2F6BFF;
}

.page-about__value-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-about__responsible-gaming .page-about__actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  align-items: center;
}

.page-about__contact-section .page-about__contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-about__hero-section {
    padding-bottom: 30px;
  }

  .page-about__hero-content {
    padding: 0 15px;
  }

  .page-about__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-about__hero-description {
    font-size: 1em;
  }

  .page-about__hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-about__btn {
    width: 100%;
    max-width: 250px;
  }

  .page-about__section--padded {
    padding: 40px 15px;
  }

  .page-about__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 30px;
  }

  .page-about__content-grid {
    flex-direction: column;
    gap: 30px;
  }

  .page-about__text-block, .page-about__image-block {
    max-width: 100%;
  }

  .page-about__content-image {
    max-width: 100%;
    height: auto;
  }

  .page-about__responsible-gaming .page-about__actions {
    align-items: stretch;
  }

  .page-about__contact-section .page-about__contact-links {
    flex-direction: column;
    align-items: stretch;
  }

  /* Enforce image max-width for content area */
  .page-about img {
    max-width: 100%;
    height: auto;
  }
}