/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

.page-terms-conditions__hero {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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: linear-gradient(135deg, rgba(204, 0, 0, 0.8), rgba(255, 215, 0, 0.6)); /* #CC0000 to #FFD700 */
  z-index: 2;
}

.page-terms-conditions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  z-index: 3;
  color: #fff;
}

.page-terms-conditions__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  color: #eee;
}

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

.page-terms-conditions__article {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.page-terms-conditions__article:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.page-terms-conditions__section-title {
  font-size: 2em;
  color: #CC0000; /* Main color */
  margin-bottom: 20px;
  border-left: 5px solid #FFD700; /* Auxiliary color */
  padding-left: 15px;
  font-weight: bold;
}

.page-terms-conditions__article p {
  margin-bottom: 15px;
  color: #444;
}

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

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

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

.page-terms-conditions__image--small {
  max-width: 600px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-terms-conditions__cta-section {
  background: linear-gradient(90deg, #CC0000, #FFD700); /* Main to auxiliary */
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

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

.page-terms-conditions__cta-section .page-terms-conditions__container {
  position: relative;
  z-index: 2;
}

.page-terms-conditions__cta-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
}

.page-terms-conditions__cta-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #eee;
}

.page-terms-conditions__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-terms-conditions__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-terms-conditions__button--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #CC0000; /* Main color */
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-terms-conditions__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-terms-conditions__button--secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid #fff;
}

.page-terms-conditions__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.page-terms-conditions .highlight {
  color: #CC0000; /* Main color for highlights */
  font-weight: bold;
}

.page-terms-conditions__hero .highlight {
  color: #FFD700; /* Auxiliary color for hero highlights */
}

.page-terms-conditions__cta-section .highlight {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-terms-conditions__hero {
    padding: 80px 0;
  }

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

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

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

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

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

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

  .page-terms-conditions__button-group {
    flex-direction: column;
    gap: 15px;
  }
}

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

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

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