/* style/terms-conditions.css */
.page-terms-conditions {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

@media (max-width: 768px) {
  .page-terms-conditions {
    overflow-x: hidden;
  }
}

.page-terms-conditions__hero-section {
  background-color: #1A202C; /* Primary dark color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-terms-conditions__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Auxiliary gold color */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-terms-conditions__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-terms-conditions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .page-terms-conditions__hero-title {
    font-size: 2.2em;
  }
  .page-terms-conditions__hero-description {
    font-size: 1em;
  }
  .page-terms-conditions__hero-image {
    max-width: 100%;
    height: auto;
  }
}

.page-terms-conditions__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.page-terms-conditions__article {
  padding: 20px 0;
}

.page-terms-conditions__heading {
  font-size: 2em;
  color: #1A202C;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-terms-conditions__paragraph {
  font-size: 1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-terms-conditions__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-terms-conditions__list-item {
  margin-bottom: 10px;
  color: #333333;
}

.page-terms-conditions__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum width */
  min-height: 200px; /* Enforce minimum height */
}

@media (max-width: 768px) {
  .page-terms-conditions__heading {
    font-size: 1.6em;
  }
  .page-terms-conditions__image {
    max-width: 100%;
    height: auto; /* Ensure responsiveness */
  }
  .page-terms-conditions__content-area {
    padding: 20px 15px;
    margin-top: -40px;
  }
}

.page-terms-conditions__link {
  color: #1A202C; /* Primary dark color for links */
  text-decoration: underline;
  font-weight: bold;
}

.page-terms-conditions__link:hover {
  color: #FFD700; /* Auxiliary gold color on hover */
}