/* style/about-legal-information.css */
.page-about-legal-information {
  font-family: 'Arial', sans-serif;
  color: #003366; /* Main text color for high contrast */
  line-height: 1.6;
}

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

.page-about-legal-information__hero {
  background-color: #003366; /* Deep blue background for hero */
  color: #FFFFFF; /* White text for contrast */
  padding: 80px 0;
  text-align: center;
}

.page-about-legal-information__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFCC00; /* Gold accent for title */
}

.page-about-legal-information__hero-subtitle {
  font-size: 1.3em;
  opacity: 0.9;
}

.page-about-legal-information__section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-about-legal-information__section--alt-bg {
  background-color: #f8f8f8; /* Light grey for alternating sections */
}

.page-about-legal-information__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.page-about-legal-information__content-grid--reverse {
  grid-template-areas: "image text";
}

.page-about-legal-information__content-grid--reverse .page-about-legal-information__text-content {
  grid-area: text;
}

.page-about-legal-information__content-grid--reverse .page-about-legal-information__image-wrapper {
  grid-area: image;
}

.page-about-legal-information__text-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333; /* Dark grey for paragraph text */
}

.page-about-legal-information__image-wrapper {
  text-align: center;
}

.page-about-legal-information__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about-legal-information__cta-section {
  background-color: #FFCC00; /* Gold background for CTA */
  padding: 60px 0;
  text-align: center;
  color: #003366; /* Deep blue text for contrast */
}

.page-about-legal-information__cta-content {
  max-width: 800px;
}

.page-about-legal-information__cta-title {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #003366;
}

.page-about-legal-information__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #333333;
}

.page-about-legal-information__cta-button {
  display: inline-block;
  background-color: #003366; /* Deep blue button */
  color: #FFFFFF; /* White text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-about-legal-information__cta-button:hover {
  background-color: #002244; /* Darker blue on hover */
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-about-legal-information__hero-title {
    font-size: 2.5em;
  }

  .page-about-legal-information__hero-subtitle,
  .page-about-legal-information__text-content p {
    font-size: 1em;
  }

  .page-about-legal-information__section-title {
    font-size: 2em;
  }

  .page-about-legal-information__content-grid,
  .page-about-legal-information__content-grid--reverse {
    grid-template-columns: 1fr;
    grid-template-areas: unset;
  }

  .page-about-legal-information__cta-title {
    font-size: 1.8em;
  }

  .page-about-legal-information__cta-text {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-about-legal-information__hero {
    padding: 60px 0;
  }

  .page-about-legal-information__hero-title {
    font-size: 2em;
  }

  .page-about-legal-information__section {
    padding: 40px 0;
  }

  .page-about-legal-information__section-title {
    font-size: 1.8em;
  }

  .page-about-legal-information__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}