/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #e5e5d1; /* Light text for dark background */
  background-color: #1A1A2E;
}

.page-terms-conditions__hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #FFFFFF;
}

.page-terms-conditions__hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-terms-conditions__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.5));
  z-index: 1;
}

.page-terms-conditions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.page-terms-conditions__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #E6B34B;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__subtitle {
  font-size: 1.4em;
  font-weight: 300;
}

.page-terms-conditions__content-section {
  padding: 60px 0;
  background-color: #1A1A2E;
}

.page-terms-conditions__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-terms-conditions__article p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #cccccc;
}

.page-terms-conditions__article strong {
  color: #E6B34B;
}

.page-terms-conditions__heading {
  font-size: 2.2em;
  color: #E6B34B;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
}

.page-terms-conditions__list {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
  color: #cccccc;
}

.page-terms-conditions__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-terms-conditions__call-to-action {
  text-align: center;
  background-color: #2e2e4a;
  padding: 40px;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__call-to-action p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #E6B34B;
}

.page-terms-conditions__btn {
  display: inline-block;
  background-color: #E6B34B;
  color: #1A1A2E;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-terms-conditions__btn:hover {
  background-color: #d1a240;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-terms-conditions__hero {
    height: 300px;
  }

  .page-terms-conditions__title {
    font-size: 2.5em;
  }

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

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

  .page-terms-conditions__article p,
  .page-terms-conditions__list li {
    font-size: 1em;
  }

  .page-terms-conditions__call-to-action p {
    font-size: 1.1em;
  }

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

@media (max-width: 480px) {
  .page-terms-conditions__hero {
    height: 250px;
  }

  .page-terms-conditions__title {
    font-size: 2em;
  }

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

  .page-terms-conditions__heading {
    font-size: 1.6em;
  }

  .page-terms-conditions__container {
    padding: 0 15px;
  }
}