/* style/resources-promo-analysis.css */

/* Variables */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --login-button-color: #EA7C07;
  --background-color: #FFFFFF;
  --black-color: #000000;
  --border-color: #e0e0e0;
}

/* Base Styles */
.page-resources-promo-analysis {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  background-color: var(--background-color);
  line-height: 1.6;
}

.page-resources-promo-analysis h1,
.page-resources-promo-analysis h2,
.page-resources-promo-analysis h3 {
  color: var(--black-color);
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-resources-promo-analysis h1 {
  font-size: 3em;
  font-weight: 700;
}

.page-resources-promo-analysis h2 {
  font-size: 2.2em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-resources-promo-analysis h3 {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--primary-color);
}

.page-resources-promo-analysis p {
  margin-bottom: 15px;
}

.page-resources-promo-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-promo-analysis__section {
  padding: 60px 0;
}

/* Hero Section */
.page-resources-promo-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, var(--primary-color) 0%, #a8e0f5 100%);
  color: var(--text-light);
}

.page-resources-promo-analysis__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-promo-analysis__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-promo-analysis__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  filter: none;
}

.page-resources-promo-analysis__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-promo-analysis__main-title {
  color: var(--text-light);
  font-size: 3.2em;
  margin-bottom: 15px;
}

.page-resources-promo-analysis__intro-description {
  color: var(--text-light);
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-promo-analysis__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--login-button-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-resources-promo-analysis__cta-button:hover {
  background: #c76906; /* Darken on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Intro Section */
.page-resources-promo-analysis__general-intro {
  background-color: var(--secondary-color);
}

/* Promo Types Section */
.page-resources-promo-analysis__promo-types {
  background-color: #f8f8f8;
}

.page-resources-promo-analysis__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-promo-analysis__card {
  background: var(--secondary-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-resources-promo-analysis__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-promo-analysis__card img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  filter: none;
}

.page-resources-promo-analysis__card-title {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-promo-analysis__card p {
  font-size: 0.95em;
  color: var(--text-dark);
  flex-grow: 1;
}

.page-resources-promo-analysis__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95em;
  font-weight: 600;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

.page-resources-promo-analysis__btn-primary:hover {
  background: #2087b3; /* Darken on hover */
  transform: translateY(-2px);
}

/* Terms and Conditions Section */
.page-resources-promo-analysis__terms-conditions {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-promo-analysis__terms-conditions h2 {
  color: var(--text-light);
}

.page-resources-promo-analysis__terms-conditions p {
  color: var(--text-light);
}

.page-resources-promo-analysis__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
}

.page-resources-promo-analysis__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-resources-promo-analysis__image-wrapper {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.page-resources-promo-analysis__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: none;
}

.page-resources-promo-analysis__list {
    flex: 2;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-resources-promo-analysis__list li {
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 15px;
    padding: 18px 25px;
    border-radius: 8px;
    font-size: 1.05em;
    color: var(--text-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-resources-promo-analysis__list li strong {
    color: var(--text-light);
}

/* Claim Guide Section */
.page-resources-promo-analysis__claim-guide {
  background-color: var(--secondary-color);
}

.page-resources-promo-analysis__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-promo-analysis__step-item {
  background: #fdfdfd;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-resources-promo-analysis__step-item:hover {
  transform: translateY(-5px);
}

.page-resources-promo-analysis__step-item img {
  width: 100%;
  max-width: 300px;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  filter: none;
}

.page-resources-promo-analysis__step-title {
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-promo-analysis__step-item p {
  font-size: 0.95em;
  color: var(--text-dark);
  flex-grow: 1;
}

.page-resources-promo-analysis__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: 600;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid var(--primary-color);
}