/* style/terms-conditions.css */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for main text on dark background */
  background-color: #1A202C;
}

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

.page-terms-conditions__hero {
  background: linear-gradient(135deg, #1A202C 0%, #343a40 100%); /* Slightly lighter dark gradient */
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-terms-conditions__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-terms-conditions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-terms-conditions__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

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

.page-terms-conditions__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .page-terms-conditions__grid {
    grid-template-columns: 1fr;
  }
}

.page-terms-conditions__main-content {
  background-color: #282c34; /* Slightly lighter dark background for content */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__article h2 {
  font-size: 2em;
  color: #FFD700; /* Gold for section headings */
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-terms-conditions__article h3 {
  font-size: 1.5em;
  color: #FFD700; /* Gold for subheadings */
  margin-top: 30px;
  margin-bottom: 10px;
}

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

.page-terms-conditions__article strong {
  color: #FFD700;
}

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

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

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

.page-terms-conditions__sidebar-box {
  background-color: #282c34;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-terms-conditions__sidebar-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-terms-conditions__sidebar-box p {
  color: #CCCCCC;
  margin-bottom: 20px;
}

.page-terms-conditions__sidebar-button {
  display: block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.page-terms-conditions__sidebar-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-terms-conditions__image--small {
  max-width: 70%; /* Smaller image for sidebar */
  display: block;
  margin: 20px auto 0 auto;
}

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

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

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

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

  .page-terms-conditions__article h2 {
    font-size: 1.8em;
  }

  .page-terms-conditions__article h3 {
    font-size: 1.3em;
  }
}

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

  .page-terms-conditions__cta-button,
  .page-terms-conditions__sidebar-button {
    padding: 12px 20px;
    font-size: 0.95em;
  }

  .page-terms-conditions__main-content,
  .page-terms-conditions__sidebar-box {
    padding: 20px;
  }
}