/* style/support.css */

.page-support {
  font-family: Arial, sans-serif;
  color: #FFFFFF; /* Default text color for dark background */
  background-color: #0A2463;
  line-height: 1.6;
}

.page-support a {
  text-decoration: none;
  color: #E3B505;
}

.page-support a:hover {
  text-decoration: underline;
}

.page-support__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0A2463 0%, #304E8A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-support__hero-title {
  font-size: 3.5em;
  color: #E3B505;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__hero-description {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 40px;
}

.page-support__hero-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__hero-button:hover {
  background-color: #f5cb42;
  transform: translateY(-3px);
  text-decoration: none;
}

.page-support__hero-image-wrapper {
  margin-top: 40px;
  max-width: 90%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-support__sections {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 60px;
}

.page-support__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #1a3a70;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-support__section-title {
  font-size: 2.5em;
  color: #E3B505;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-text {
  font-size: 1.1em;
  color: #D0D0D0;
  margin-bottom: 30px;
  max-width: 700px;
}

.page-support__section-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-support__section-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__section-button:hover {
  background-color: #f5cb42;
  transform: translateY(-2px);
  text-decoration: none;
}

.page-support__cta {
  background-color: #E3B505;
  padding: 80px 20px;
  text-align: center;
  color: #0A2463;
}

.page-support__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #0A2463;
}

.page-support__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #333333;
}

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

.page-support__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-support__cta-button--primary {
  background-color: #0A2463;
  color: #E3B505;
}

.page-support__cta-button--primary:hover {
  background-color: #1a3a70;
  transform: translateY(-3px);
  color: #f5cb42;
  text-decoration: none;
}

.page-support__cta-button--secondary {
  background-color: transparent;
  color: #0A2463;
  border-color: #0A2463;
}

.page-support__cta-button--secondary:hover {
  background-color: #0A2463;
  color: #E3B505;
  transform: translateY(-3px);
  text-decoration: none;
}

@media (min-width: 768px) {
  .page-support__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

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

  .page-support__hero-image-wrapper {
    margin-top: 0;
    max-width: 50%;
  }

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

  .page-support__hero-description {
    font-size: 1.4em;
  }

  .page-support__sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
  }

  .page-support__section {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 50px;
  }

  .page-support__section--reverse {
    flex-direction: row-reverse;
  }

  .page-support__section-image {
    flex-shrink: 0;
    width: 250px;
    max-width: none;
    margin-bottom: 0;
    margin-right: 30px;
  }

  .page-support__section--reverse .page-support__section-image {
    margin-right: 0;
    margin-left: 30px;
  }

  .page-support__section-content {
    flex-grow: 1;
  }

  .page-support__section-title {
    font-size: 2em;
  }

  .page-support__cta-title {
    font-size: 4em;
  }
}

@media (max-width: 767px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-text {
    font-size: 0.9em;
  }
  .page-support__cta-title {
    font-size: 2.2em;
  }
  .page-support__cta-description {
    font-size: 1em;
  }
  .page-support__section-image {
    width: 80%;
  }
}