/* style/terms-conditions.css */
:root {
  --primary-color: #FFD700; /* Bright Gold */
  --secondary-color: #0A192F; /* Dark Blue */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0d0d1a;
  --accent-color: #FF4500; /* Orange-Red for highlights */
  --border-color: rgba(255, 255, 255, 0.15);
}

.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark); /* Inherited from body via shared.css */
  padding-top: 120px; /* Adjusted for fixed header on desktop */
}

.page-terms-conditions__hero-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2a44 100%);
  padding: 80px 20px;
  text-align: center;
  color: var(--text-light);
  padding-top: 10px; /* Specific adjustment for hero section after main padding-top */
}

.page-terms-conditions__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-terms-conditions__hero-description {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.page-terms-conditions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-terms-conditions__cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-terms-conditions__cta-button--secondary:hover {
  background: #1a2a44;
  border-color: #e6c200;
}

.page-terms-conditions__content-section {
  padding: 60px 20px;
  background-color: var(--background-dark);
  border-bottom: 1px solid var(--border-color);
}

.page-terms-conditions__dark-bg {
  background-color: #1a2a44; /* Slightly different dark background for contrast */
}

.page-terms-conditions__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--primary-color);
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-terms-conditions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.page-terms-conditions h3 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-terms-conditions p {
  margin-bottom: 15px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.page-terms-conditions ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.page-terms-conditions li {
  margin-bottom: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.page-terms-conditions__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__image--full-width {
  width: 100%;
}

.page-terms-conditions__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-terms-conditions__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-terms-conditions__contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--text-light);
}

.page-terms-conditions__contact-list li strong {
  color: var(--primary-color);
  margin-right: 10px;
}

.page-terms-conditions__final-cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(45deg, #1a2a44 0%, var(--secondary-color) 100%);
  border-top: 1px solid var(--border-color);
}

.page-terms-conditions__final-cta-title {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.page-terms-conditions__final-cta-description {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.95);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-terms-conditions__main-title {
    font-size: 40px;
  }
  .page-terms-conditions__section-title {
    font-size: 30px;
  }
  .page-terms-conditions h3 {
    font-size: 22px;
  }
  .page-terms-conditions p,
  .page-terms-conditions li {
    font-size: 15px;
  }
  .page-terms-conditions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-terms-conditions {
    padding-top: 100px !important; /* Adjusted for fixed header on mobile */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-terms-conditions__hero-section {
    padding: 60px 15px;
    padding-top: 10px !important;
  }
  .page-terms-conditions__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-terms-conditions__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-terms-conditions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-terms-conditions__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
  }
  .page-terms-conditions__content-section {
    padding: 40px 15px;
  }
  .page-terms-conditions__container {
    padding: 0 15px;
  }
  .page-terms-conditions__section-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .page-terms-conditions h3 {
    font-size: 20px;
    margin-top: 30px;
  }
  .page-terms-conditions p,
  .page-terms-conditions li {
    font-size: 14px;
  }
  .page-terms-conditions__image {
    margin: 20px auto;
  }
  .page-terms-conditions__final-cta-section {
    padding: 60px 15px;
  }
  .page-terms-conditions__final-cta-title {
    font-size: 32px;
  }
  .page-terms-conditions__final-cta-description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-terms-conditions__main-title {
    font-size: 28px;
  }
  .page-terms-conditions__section-title {
    font-size: 24px;
  }
  .page-terms-conditions h3 {
    font-size: 18px;
  }
  .page-terms-conditions p,
  .page-terms-conditions li {
    font-size: 13px;
  }
  .page-terms-conditions__cta-button {
    font-size: 14px !important;
    padding: 10px 15px !important;
  }
  .page-terms-conditions__final-cta-title {
    font-size: 28px;
  }
  .page-terms-conditions__final-cta-description {
    font-size: 14px;
  }
}