/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light text for dark body background */
  background-color: #121212; /* Ensure consistency with body background */
}

.page-terms-conditions__hero-section {
  position: relative;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  background-color: #017439;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-terms-conditions__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:hero_main:1920x1080:32win fun,terms,service,security,trust]');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.page-terms-conditions__hero-section .page-terms-conditions__container {
  position: relative;
  z-index: 1;
}

.page-terms-conditions__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-terms-conditions__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-terms-conditions__btn-primary,
.page-terms-conditions__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 10px;
  font-size: 1.1em;
  text-align: center;
}

.page-terms-conditions__btn-primary {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

.page-terms-conditions__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-terms-conditions__btn-secondary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-terms-conditions__btn-secondary:hover {
  background-color: #005a2e;
  border-color: #005a2e;
}

.page-terms-conditions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: #e0e0e0;
}

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

.page-terms-conditions__section-title {
  font-size: 2em;
  color: #017439;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #017439;
  padding-bottom: 10px;
  font-weight: bold;
}

.page-terms-conditions__sub-title {
  font-size: 1.5em;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-terms-conditions p {
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 1.7;
}

.page-terms-conditions ul,
.page-terms-conditions ol {
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-terms-conditions ul {
  list-style: disc;
}

.page-terms-conditions ol {
  list-style: decimal;
}

.page-terms-conditions li {
  margin-bottom: 8px;
}

.page-terms-conditions a {
  color: #017439;
  text-decoration: underline;
}

.page-terms-conditions a:hover {
  color: #005a2e;
}

.page-terms-conditions__image-wrapper {
  margin: 30px auto;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}