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

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

.page-terms-conditions__subtitle {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto;
  color: #e0e0e0;
}

.page-terms-conditions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
}

.page-terms-conditions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-terms-conditions__content-section {
  padding: 60px 0;
}

.page-terms-conditions__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__article {
  padding: 40px;
}

.page-terms-conditions__section-title {
  font-size: 2.2em;
  color: #007bff;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 10px;
}

.page-terms-conditions__sub-section-title {
  font-size: 1.6em;
  color: #0056b3;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-terms-conditions p {
  margin-bottom: 15px;
  color: #555;
  font-size: 1.05em;
}

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

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

.page-terms-conditions a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-terms-conditions a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-terms-conditions__highlight {
  color: #ffc107;
  font-weight: bold;
}

.page-terms-conditions__keyword {
  font-weight: bold;
}

.page-terms-conditions__image {
  width: 100%;
  height: auto;
  max-width: 700px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #f0f8ff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.page-terms-conditions__cta-text {
  font-size: 1.3em;
  color: #333;
  margin-bottom: 25px;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.page-terms-conditions__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  color: #000;
  text-decoration: none;
}

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

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

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

  .page-terms-conditions__sub-section-title {
    font-size: 1.4em;
  }

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

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

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

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

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

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

  .page-terms-conditions__sub-section-title {
    font-size: 1.2em;
  }

  .page-terms-conditions__article {
    padding: 15px;
  }
}