/* style/terms-conditions.css */

/* Base styles for the terms-conditions page, ensuring light text on dark body background */
.page-terms-conditions {
  background-color: #0A0A0A; /* Matches body background */
  color: #FFF6D6; /* Main text color for readability on dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Space above footer */
}

/* Hero Section */
.page-terms-conditions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above content */
  align-items: center;
  padding: 10px 0 60px; /* Small top padding, more bottom padding */
  box-sizing: border-box;
  overflow: hidden; /* Ensure no overflow */
}

.page-terms-conditions__hero-image-wrapper {
  width: 100%;
  max-width: 100%; /* Ensure it fits container */
  overflow: hidden;
  margin-bottom: 30px; /* Space between image and text */
}

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

.page-terms-conditions__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-terms-conditions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  color: #F2C14E; /* Brand primary color for title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-terms-conditions__description {
  font-size: 1.1rem;
  color: #FFF6D6; /* Light text color */
  margin-bottom: 30px;
}

.page-terms-conditions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure button fits on mobile */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-terms-conditions__cta-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for contrast on bright button */
  border: none;
}

.page-terms-conditions__cta-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

/* Content Sections */
.page-terms-conditions__content-section {
  padding: 60px 0;
  border-top: 1px solid #3A2A12; /* Border between sections */
}

.page-terms-conditions__content-section.page-terms-conditions__dark-bg {
  background-color: #111111; /* Card BG color for alternating sections */
  color: #FFF6D6; /* Light text color */
}

.page-terms-conditions__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-terms-conditions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #F2C14E;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.page-terms-conditions__sub-title {
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  color: #FFD36B; /* Accent color for sub-titles */
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-terms-conditions p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #FFF6D6; /* Light text color */
}

.page-terms-conditions ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #FFF6D6;
}

.page-terms-conditions li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #FFF6D6;
}

.page-terms-conditions a {
  color: #FFD36B; /* Links in content */
  text-decoration: underline;
}

.page-terms-conditions a:hover {
  color: #F2C14E;
}

/* FAQ Section */
.page-terms-conditions__faq-section {
  padding: 60px 0;
  border-top: 1px solid #3A2A12;
  background-color: #0A0A0A; /* Matches body background */
}

.page-terms-conditions__faq-list {
  margin-top: 30px;
}

.page-terms-conditions__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}