/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #0A2463, #3A5B8A);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-terms-conditions__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #E3B505; /* Wealth Gold for emphasis */
  font-weight: bold;
}

.page-terms-conditions__subtitle {
  font-size: 1.3em;
  opacity: 0.9;
}

.page-terms-conditions__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-terms-conditions__section--alt-bg {
  background-color: #f2f2f2;
}

.page-terms-conditions__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-terms-conditions__section-title {
  font-size: 2.2em;
  color: #0A2463; /* Tech Blue for headings */
  margin-bottom: 25px;
  width: 100%;
  text-align: center;
  font-weight: 600;
}

.page-terms-conditions__container p {
  font-size: 1.1em;
  margin-bottom: 15px;
  flex: 1;
  min-width: 300px;
  color: #444; /* Dark grey for readability on light background */
}

.page-terms-conditions__container ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  flex: 1;
  min-width: 300px;
  color: #444;
}

.page-terms-conditions__container ul li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-terms-conditions__container a {
  color: #0A2463; /* Tech Blue for links */
  text-decoration: underline;
  font-weight: 500;
}

.page-terms-conditions__container a:hover {
  color: #E3B505; /* Wealth Gold on hover */
}

.page-terms-conditions__image {
  width: 40%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-terms-conditions__image--left {
  order: -1;
}

.page-terms-conditions__image--right {
  order: 1;
}

.page-terms-conditions__cta-wrapper {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #E3B505; /* Wealth Gold for CTA button */
  color: #0A2463; /* Tech Blue for text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-terms-conditions__cta-button:hover {
  background-color: #f0c207;
  transform: translateY(-2px);
}

.page-terms-conditions__image--cta {
  width: 100%;
  max-width: 600px;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-terms-conditions__title {
    font-size: 2.5em;
  }

  .page-terms-conditions__subtitle {
    font-size: 1.1em;
  }

  .page-terms-conditions__section-title {
    font-size: 1.8em;
  }

  .page-terms-conditions__container {
    flex-direction: column;
  }

  .page-terms-conditions__image {
    width: 80%;
    max-width: 100%;
    margin-top: 20px;
  }

  .page-terms-conditions__image--left, .page-terms-conditions__image--right {
    order: unset;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__title {
    font-size: 2em;
  }

  .page-terms-conditions__subtitle {
    font-size: 1em;
  }

  .page-terms-conditions__hero {
    padding: 80px 15px;
  }

  .page-terms-conditions__section {
    padding: 40px 0;
  }

  .page-terms-conditions__section-title {
    font-size: 1.5em;
  }

  .page-terms-conditions__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}