/* style/resources-td88-promotions-guide.css */

/* Variables and base styles */
:root {
  --primary-color: #1A2E44;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #000; /* From shared.css body background */
  --bg-light: #f9f9f9; /* For cards/sections on dark body */
  --border-color: #e0e0e0;
}

/* Base page content styles for dark body background */
.page-resources-td88-promotions-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Should match body background */
}

/* General container for content */
.page-resources-td88-promotions-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Fixed Nav Bar Spacing: Video section */
.page-resources-td88-promotions-guide__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjust based on actual nav height */
  background-color: var(--primary-color); /* Example background for the section */
}

/* Fixed Nav Bar Spacing: For sections that are NOT the video section */
.page-resources-td88-promotions-guide__title-section {
    padding-top: 60px; /* General top padding for sections */
    padding-bottom: 60px;
}

.page-resources-td88-promotions-guide__faq-section,
.page-resources-td88-promotions-guide__brand-section,
.page-resources-td88-promotions-guide__blog-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Specific styles for sections */
.page-resources-td88-promotions-guide__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-td88-promotions-guide__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

/* Headings */
.page-resources-td88-promotions-guide h1,
.page-resources-td88-promotions-guide h2,
.page-resources-td88-promotions-guide h3 {
  color: var(--secondary-color); /* Use accent color for headings */
  text-align: center;
  margin-bottom: 20px;
}

.page-resources-td88-promotions-guide__main-title {
  font-size: 3.2em;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--text-light); /* H1 on dark section should be light */
}

.page-resources-td88-promotions-guide__main-title a {
  color: var(--secondary-color);
  text-decoration: none;
}
.page-resources-td88-promotions-guide__main-title a:hover {
  text-decoration: underline;
}

.page-resources-td88-promotions-guide__title-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-light);
}

.page-resources-td88-promotions-guide__title-description strong a {
  color: var(--secondary-color);
  text-decoration: none;
}
.page-resources-td88-promotions-guide__title-description strong a:hover {
  text-decoration: underline;
}

/* CTA Buttons */
.page-resources-td88-promotions-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-resources-td88-promotions-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  max-width: 100%; /* For responsive buttons */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-td88-promotions-guide__btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-td88-promotions-guide__btn-primary:hover {
  background: #e6c200; /* A darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-td88-promotions-guide__btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
}

.page-resources-td88-promotions-guide__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}


/* General text and links */
.page-resources-td88-promotions-guide p {
  margin-bottom: 1em;
  color: inherit; /* Inherit from section, ensuring contrast */
}