/* style/terms-conditions.css */
/* Custom Colors */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --body-bg: #08160F; /* This will be overridden by shared.css body, but useful for context */
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* Base styles for the page content, assuming shared.css sets body background to var(--body-bg) */
.page-terms-conditions {
  background-color: var(--body-bg); /* Ensure consistency if shared.css doesn't set it for some reason, though it should */
  color: var(--text-main); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Hero Section */
.page-terms-conditions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
}

.page-terms-conditions__hero-image {
  width: 100%;
  max-width: 1200px; /* Adjust based on design */
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px; /* Space between image and content */
}

.page-terms-conditions__hero-content {
  width: 100%;
  max-width: 900px;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-terms-conditions__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* H1 font-size clamp */
  color: var(--gold-color); /* Use gold for main title for emphasis */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-terms-conditions__description {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}