.page-resources-debet-future-outlook {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Main dark background */
}

.page-resources-debet-future-outlook__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-debet-future-outlook__hero {
  background: linear-gradient(135deg, #0A1931 0%, #30475E 100%); /* Gradient background */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-resources-debet-future-outlook__hero-title {
  font-size: 3.5em;
  color: #E0B400; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-resources-debet-future-outlook__hero-subtitle {
  font-size: 1.5em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-resources-debet-future-outlook__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(224, 180, 0, 0.1);
}

.page-resources-debet-future-outlook__section:last-of-type {
  border-bottom: none;
}

.page-resources-debet-future-outlook__section-title {
  font-size: 2.8em;
  color: #E0B400; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-debet-future-outlook__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E0B400;
  border-radius: 2px;
}

.page-resources-debet-future-outlook__subsection-title {
  font-size: 2em;
  color: #f0f0f0; /* Light gray for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #E0B400;
  padding-left: 15px;
}

.page-resources-debet-future-outlook p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-resources-debet-future-outlook ul {
  list-style: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-resources-debet-future-outlook ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-debet-future-outlook ul li strong {
  color: #E0B400;
}

.page-resources-debet-future-outlook__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-resources-debet-future-outlook__button--primary {
  background-color: #E0B400; /* Gold button */
  color: #0A1931; /* Dark blue text on gold */
  border: 2px solid #E0B400;
}

.page-resources-debet-future-outlook__button--primary:hover {
  background-color: #FFC107;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(224, 180, 0, 0.4);
}

.page-resources-debet-future-outlook__button--secondary {
  background-color: transparent;
  color: #E0B400; /* Gold text */
  border: 2px solid #E0B400;
  margin-top: 20px;
}

.page-resources-debet-future-outlook__button--secondary:hover {
  background-color: #E0B400;
  color: #0A1931;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(224, 180, 0, 0.2);
}

.page-resources-debet-future-outlook__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-debet-future-outlook__hero-title {
    font-size: 2.5em;
  }

  .page-resources-debet-future-outlook__hero-subtitle,
  .page-resources-debet-future-outlook p,
  .page-resources-debet-future-outlook ul li {
    font-size: 1em;
  }

  .page-resources-debet-future-outlook__section-title {
    font-size: 2em;
  }

  .page-resources-debet-future-outlook__subsection-title {
    font-size: 1.5em;
  }

  .page-resources-debet-future-outlook__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-resources-debet-future-outlook__hero-title {
    font-size: 2em;
  }

  .page-resources-debet-future-outlook__hero-subtitle {
    font-size: 0.9em;
  }

  .page-resources-debet-future-outlook__section-title {
    font-size: 1.8em;
  }

  .page-resources-debet-future-outlook__subsection-title {
    font-size: 1.3em;
  }

  .page-resources-debet-future-outlook__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

/* Floating Ad Menu */
.page-resources-debet-future-outlook__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #E0B400; /* Gold background */
  color: #0A1931; /* Dark blue text */
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInPromo 0.5s ease-out forwards 1s;
}

.page-resources-debet-future-outlook__floating-ad p {
  margin: 0;
  font-weight: bold;
  font-size: 1.1em;
  color: #0A1931;
}

.page-resources-debet-future-outlook__floating-ad-button {
  background-color: #0A1931; /* Dark blue button */
  color: #E0B400; /* Gold text */
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-debet-future-outlook__floating-ad-button:hover {
  background-color: #1a2a47; /* Slightly lighter dark blue */
}

@keyframes fadeInPromo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .page-resources-debet-future-outlook__floating-ad {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
    bottom: 15px;
    right: 15px;
  }
  .page-resources-debet-future-outlook__floating-ad p {
    font-size: 1em;
    margin-bottom: 10px;
  }
  .page-resources-debet-future-outlook__floating-ad-button {
    width: 100%;
    text-align: center;
  }
}