/* style/terms-conditions.css */
.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-section {
  background: linear-gradient(135deg, #FFD700, #4B0082);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-terms-conditions__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(45deg);
  opacity: 0.3;
}

.page-terms-conditions__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-terms-conditions__subtitle {
  font-size: 1.3em;
  color: #eee;
  position: relative;
  z-index: 1;
}

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

.page-terms-conditions__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.page-terms-conditions__main-content {
  flex: 3;
  min-width: 0;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__sidebar {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-terms-conditions__sidebar-block {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.page-terms-conditions__sidebar-title {
  font-size: 1.6em;
  color: #4B0082;
  margin-bottom: 20px;
  border-bottom: 1px solid #FFD700;
  padding-bottom: 10px;
}

.page-terms-conditions__sidebar-list {
  list-style: none;
  padding: 0;
}

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

.page-terms-conditions__sidebar-list a {
  color: #4B0082;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-terms-conditions__sidebar-list a:hover {
  color: #FFD700;
}

.page-terms-conditions__sidebar-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-terms-conditions__sidebar-text {
  font-style: italic;
  color: #666;
  font-size: 0.95em;
}

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

.page-terms-conditions__cta-section p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #4B0082;
}

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

.page-terms-conditions__button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  color: #330066;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-terms-conditions__grid {
    flex-direction: column;
  }
  .page-terms-conditions__main-content,
  .page-terms-conditions__sidebar {
    flex: auto;
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions__title {
    font-size: 2.5em;
  }
  .page-terms-conditions__subtitle {
    font-size: 1.1em;
  }
  .page-terms-conditions__hero-section {
    padding: 60px 0;
  }
  .page-terms-conditions__content-section {
    padding: 40px 0;
  }
  .page-terms-conditions__main-content,
  .page-terms-conditions__sidebar-block {
    padding: 20px;
  }
  .page-terms-conditions__heading {
    font-size: 1.8em;
  }
}

@media (max-width: 576px) {
  .page-terms-conditions__title {
    font-size: 2em;
  }
  .page-terms-conditions__subtitle {
    font-size: 1em;
  }
  .page-terms-conditions__button {
    font-size: 1em;
    padding: 12px 25px;
  }
}