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

.page-terms-conditions .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-terms-conditions .hero-banner {
  position: relative;
  width: 100%;
  height: 400px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #000080; /* Secondary color as fallback */
}

.page-terms-conditions .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-terms-conditions .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 128, 0.7); /* Dark blue overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 20px;
}

.page-terms-conditions .hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Primary color */
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions .hero-subtitle {
  font-size: 1.4em;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
}

.page-terms-conditions .content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-terms-conditions .section-title {
  font-size: 2.2em;
  color: #000080; /* Secondary color */
  margin-bottom: 30px;
  text-align: center;
  padding-top: 20px;
  border-bottom: 2px solid #FFD700; /* Primary color accent */
  padding-bottom: 10px;
}

.page-terms-conditions .sub-title {
  font-size: 1.6em;
  color: #000080;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-terms-conditions .text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333;
}

.page-terms-conditions .list-style {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #333;
}

.page-terms-conditions .list-style li {
  margin-bottom: 10px;
}

.page-terms-conditions .cta-button {
  display: inline-block;
  background-color: #FFD700; /* Primary color */
  color: #000080; /* Secondary color for text on primary button */
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 20px;
  margin-bottom: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions .cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions .link-inline {
  color: #000080;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-terms-conditions .link-inline:hover {
  color: #FFD700;
}

.page-terms-conditions .hero-subtitle .link-inline {
  color: #FFD700;
}

.page-terms-conditions .hero-subtitle .link-inline:hover {
  color: #ffffff;
}

.page-terms-conditions .image-container {
  margin: 30px 0;
  text-align: center;
}

.page-terms-conditions .content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions .final-note {
  text-align: center;
  font-style: italic;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed #ccc;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-terms-conditions .hero-title {
    font-size: 2.5em;
  }
  .page-terms-conditions .hero-subtitle {
    font-size: 1.2em;
  }
  .page-terms-conditions .section-title {
    font-size: 1.8em;
  }
  .page-terms-conditions .sub-title {
    font-size: 1.4em;
  }
  .page-terms-conditions .text-block, .page-terms-conditions .list-style li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions .hero-banner {
    height: 300px;
  }
  .page-terms-conditions .hero-title {
    font-size: 2em;
  }
  .page-terms-conditions .hero-subtitle {
    font-size: 1em;
  }
  .page-terms-conditions .content-section {
    padding: 40px 0;
  }
  .page-terms-conditions .section-title {
    font-size: 1.6em;
  }
  .page-terms-conditions .sub-title {
    font-size: 1.3em;
  }
  .page-terms-conditions .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 576px) {
  .page-terms-conditions .hero-banner {
    height: 250px;
  }
  .page-terms-conditions .hero-title {
    font-size: 1.8em;
  }
  .page-terms-conditions .hero-subtitle {
    font-size: 0.9em;
  }
  .page-terms-conditions .section-title {
    font-size: 1.4em;
  }
  .page-terms-conditions .sub-title {
    font-size: 1.2em;
  }
  .page-terms-conditions .text-block, .page-terms-conditions .list-style li {
    font-size: 0.95em;
  }
  .page-terms-conditions .container {
    padding: 0 15px;
  }
}