.page-resources-f168n-promo-analysis {
  --primary-color: #003366;
  --secondary-color: #FFD700;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --accent-color: #FF6600;
  --background-light: #f8f8f8;
  --background-dark: #002244;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

.page-resources-f168n-promo-analysis a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-resources-f168n-promo-analysis a:hover {
  text-decoration: underline;
  color: var(--accent-color);
}

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

.page-resources-f168n-promo-analysis section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-resources-f168n-promo-analysis section:nth-of-type(even) {
  background-color: var(--background-light);
}

.page-resources-f168n-promo-analysis h1,
.page-resources-f168n-promo-analysis h2,
.page-resources-f168n-promo-analysis h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-resources-f168n-promo-analysis h1 {
  font-size: 2.8em;
  color: var(--text-color-light);
}

.page-resources-f168n-promo-analysis h2 {
  font-size: 2.2em;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-resources-f168n-promo-analysis h3 {
  font-size: 1.8em;
  text-align: left;
  margin-bottom: 15px;
}

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

.page-resources-f168n-promo-analysis .cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-resources-f168n-promo-analysis .cta-button:hover {
  background-color: #FFC107;
  transform: translateY(-2px);
  text-decoration: none;
}

.page-resources-f168n-promo-analysis .primary-button {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-resources-f168n-promo-analysis .primary-button:hover {
  background-color: #004488;
}

.page-resources-f168n-promo-analysis .secondary-button {
  background-color: #e0e0e0;
  color: var(--primary-color);
  margin-left: 15px;
}

.page-resources-f168n-promo-analysis .secondary-button:hover {
  background-color: #cccccc;
}

/* Promo Hero Banner */
.page-resources-f168n-promo-analysis .promo-hero-banner {
  position: relative;
  width: 100%;
  height: 450px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--text-color-light);
}

.page-resources-f168n-promo-analysis .promo-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-f168n-promo-analysis .promo-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.7); /* Dark blue overlay for text readability */
  z-index: 2;
}

.page-resources-f168n-promo-analysis .promo-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-resources-f168n-promo-analysis .promo-hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-color-light);
}

.page-resources-f168n-promo-analysis .promo-hero-content a {
  color: var(--secondary-color);
}

.page-resources-f168n-promo-analysis .promo-hero-content a:hover {
  color: #FFEB99;
}

/* Section Intro */
.page-resources-f168n-promo-analysis .section-intro {
  background-color: #ffffff;
  text-align: center;
}

/* Section Registration Offer */
.page-resources-f168n-promo-analysis .section-registration-offer {
  background-color: var(--background-light);
}

.page-resources-f168n-promo-analysis .section-registration-offer .content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-resources-f168n-promo-analysis .section-registration-offer .text-content {
  flex: 1;
}

.page-resources-f168n-promo-analysis .section-registration-offer .image-content {
  flex: 1;
  min-width: 400px; /* Ensure image is not too small */
}

.page-resources-f168n-promo-analysis .section-registration-offer .content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Minimum size */
  min-height: 200px;
  object-fit: cover;
}

.page-resources-f168n-promo-analysis .section-registration-offer ol,
.page-resources-f168n-promo-analysis .section-registration-offer ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-f168n-promo-analysis .section-registration-offer li {
  margin-bottom: 10px;
}

.page-resources-f168n-promo-analysis .button-group {
  text-align: center;
  margin-top: 30px;
}

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

.page-resources-f168n-promo-analysis .promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-f168n-promo-analysis .promo-card:hover {
  transform: translateY(-5px);
}

.page-resources-f168n-promo-analysis .promo-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-f168n-promo-analysis .promo-card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-align: center;
}

.page-resources-f168n-promo-analysis .promo-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-resources-f168n-promo-analysis .promo-card h3 a:hover {
  text-decoration: underline;
}

.page-resources-f168n-promo-analysis .promo-card p {
  flex-grow: 1;
  font-size: 0.95em;
  color: var(--text-color-dark);
  margin-bottom: 20px;
}

.page-resources-f168n-promo-analysis .promo-card .card-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push link to bottom */
}

.page-resources-f168n-promo-analysis .promo-card .card-link:hover {
  background-color: #FFC107;
  text-decoration: none;
}

/* Terms & Conditions */
.page-resources-f168n-promo-analysis .section-terms-conditions {
  background-color: #ffffff;
}

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

.page-resources-f168n-promo-analysis .term-item {
  background-color: var(--background-light);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-f168n-promo-analysis .term-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
  text-align: left;
}

.page-resources-f168n-promo-analysis .terms-cta {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
}

/* Tips Section */
.page-resources-f168n-promo-analysis .tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-f168n-promo-analysis .tips-list li {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
}

.page-resources-f168n-promo-analysis .tips-list li strong {
  color: var(--primary-color);
}

/* FAQ Section */
.page-resources-f168n-promo-analysis .section-faq {
  background-color: var(--background-light);
}

.page-resources-f168n-promo-analysis .faq-list {
  margin-top: 30px;
}

.page-resources-f168n-promo-analysis .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.page-resources-f168n-promo-analysis .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-resources-f168n-promo-analysis .faq-question:hover {
  background: #f5f5f5;
}

.page-resources-f168n-promo-analysis .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
  text-align: left;
}

.page-resources-f168n-promo-analysis .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-resources-f168n-promo-analysis .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-resources-f168n-promo-analysis .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  color: var(--text-color-dark);
}

.page-resources-f168n-promo-analysis .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px;
}

.page-resources-f168n-promo-analysis .faq-answer p {
  margin-bottom: 0;
}

.page-resources-f168n-promo-analysis .faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Conclusion Section */
.page-resources-f168n-promo-analysis .section-conclusion {
  text-align: center;
  background-color: #ffffff;
}

.page-resources-f168n-promo-analysis .final-cta {
  margin-top: 30px;
  padding: 18px 40px;
  font-size: 1.2em;
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-resources-f168n-promo-analysis .final-cta:hover {
  background-color: #004488;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-f168n-promo-analysis h1 {
    font-size: 2.4em;
  }
  .page-resources-f168n-promo-analysis h2 {
    font-size: 1.8em;
  }
  .page-resources-f168n-promo-analysis h3 {
    font-size: 1.5em;
  }
  .page-resources-f168n-promo-analysis .section-registration-offer .content-wrapper {
    flex-direction: column;
  }
  .page-resources-f168n-promo-analysis .section-registration-offer .image-content {
    min-width: unset;
    width: 100%;
  }
  .page-resources-f168n-promo-analysis .promo-grid,
  .page-resources-f168n-promo-analysis .terms-list {
    grid-template-columns: 1fr;
  }
  .page-resources-f168n-promo-analysis .promo-hero-banner {
    height: 350px;
  }
  .page-resources-f168n-promo-analysis .promo-hero-content p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-resources-f168n-promo-analysis section {
    padding: 40px 0;
  }
  .page-resources-f168n-promo-analysis .container {
    padding: 0 15px;
  }
  .page-resources-f168n-promo-analysis h1 {
    font-size: 2em;
  }
  .page-resources-f168n-promo-analysis h2 {
    font-size: 1.6em;
  }
  .page-resources-f168n-promo-analysis .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-f168n-promo-analysis .button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-f168n-promo-analysis .secondary-button {
    margin-left: 0;
  }
  .page-resources-f168n-promo-analysis .promo-hero-banner {
    height: 300px;
  }
  .page-resources-f168n-promo-analysis .faq-question h3 {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-resources-f168n-promo-analysis h1 {
    font-size: 1.8em;
  }
  .page-resources-f168n-promo-analysis h2 {
    font-size: 1.4em;
  }
  .page-resources-f168n-promo-analysis h3 {
    font-size: 1.3em;
  }
  .page-resources-f168n-promo-analysis .promo-hero-banner {
    height: 250px;
  }
  .page-resources-f168n-promo-analysis .cta-button {
    width: 100%;
    text-align: center;
  }
  .page-resources-f168n-promo-analysis .promo-card .card-image {
    height: 180px;
  }
}