.page-about {
  color: #ffffff; /* Body background is dark (#1a1a2e), so text should be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* inherited from body #1a1a2e */
}

.page-about__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
  border-radius: 8px;
}

.page-about__hero-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-about__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-about__description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  display: inline-block;
  text-align: center;
}

.page-about__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

.page-about__btn-secondary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

.page-about__btn-large {
  min-width: 200px;
}

.page-about__section {
  padding: 60px 20px;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}

.page-about__section--mission {
  background-color: rgba(255, 255, 255, 0.05); /* Light transparent background for contrast */
}

.page-about__section--security {
  background-color: #26A9E0;
  color: #ffffff; /* Ensure white text on brand color background */
}

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

.page-about__heading {
  font-size: 2.5em;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-about__section--security .page-about__heading {
  color: #ffffff; /* White heading on blue background */
}

.page-about__paragraph {
  font-size: 1.05em;
  color: #e0e0e0;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__section--security .page-about__paragraph {
  color: #f0f0f0;
}

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

.page-about__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
  color: #ffffff;
  height: 100%; /* Ensure equal height cards */
  display: flex;
  flex-direction: column;
}

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

.page-about__card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-about__card-text {
  font-size: 1em;
  color: #e0e0e0;
  flex-grow: 1;
}

.page-about__image-content {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-about__features-list,
.page-about__security-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-about__list-item {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for list items */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.page-about__list-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-about__security-list .page-about__list-title {
  color: #ffffff; /* White title on blue background section */
}

.page-about__list-item p {
  color: #e0e0e0;
  font-size: 1em;
  flex-grow: 1;
}

.page-about__team-member {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for team members */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
}

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

.page-about__member-name {
  font-size: 1.3em;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 5px;
}

.page-about__member-role {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-about__section--cta {
  background-color: rgba(38, 169, 224, 0.2); /* Slightly darker blue tint */
  padding: 80px 20px;
}

.page-about__section--cta .page-about__heading {
  color: #ffffff;
}

.page-about__section--cta .page-about__paragraph {
  color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-about__heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-about {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-about__hero-section,
  .page-about__section {
    padding: 40px 15px;
  }

  .page-about__hero-image {
    max-height: 50vh;
  }

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

  .page-about__description {
    font-size: 1em;
  }

  .page-about__heading {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-about__paragraph {
    font-size: 0.95em;
  }

  .page-about__cards-grid,
  .page-about__features-list,
  .page-about__security-list,
  .page-about__team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__card,
  .page-about__list-item,
  .page-about__team-member {
    padding: 25px;
  }

  .page-about__card-title,
  .page-about__list-title {
    font-size: 1.3em;
  }

  /* Mobile responsive images, videos, buttons - IMPORTANT */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__cta-buttons,
  .page-about__team-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-about__hero-section {
    padding-top: 10px !important;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about a[class*="button"],
  .page-about a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto 10px auto; /* Center buttons and add space */
  }

  .page-about__cta-buttons {
    flex-direction: column !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-about__hero-section {
    padding: 30px 10px;
    padding-top: 10px;
  }

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

  .page-about__heading {
    font-size: 1.5em;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
  }
}