/* style/getting-started-understanding-bonuses.css */
.page-getting-started-understanding-bonuses {
  font-family: 'Arial', sans-serif;
  color: #0A2239; /* Dark blue text for readability */
  background-color: #f8f9fa;
}

.page-getting-started-understanding-bonuses .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-getting-started-understanding-bonuses .hero-section {
  background-color: #0A2239;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-getting-started-understanding-bonuses .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 34, 57, 0.9), rgba(224, 180, 0, 0.4));
  z-index: 1;
}

.page-getting-started-understanding-bonuses .hero-section .container {
  position: relative;
  z-index: 2;
}

.page-getting-started-understanding-bonuses .hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #E0B400; /* Gold for main title */
}

.page-getting-started-understanding-bonuses .hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-getting-started-understanding-bonuses .btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
}

.page-getting-started-understanding-bonuses .btn-primary {
  background-color: #E0B400; /* Gold button */
  color: #0A2239; /* Dark blue text on gold */
  border: 2px solid #E0B400;
}

.page-getting-started-understanding-bonuses .btn-primary:hover {
  background-color: #ffc107;
  border-color: #ffc107;
  transform: translateY(-2px);
}

.page-getting-started-understanding-bonuses .btn-secondary {
  background-color: #0A2239; /* Dark blue button */
  color: #E0B400; /* Gold text on dark blue */
  border: 2px solid #E0B400;
}

.page-getting-started-understanding-bonuses .btn-secondary:hover {
  background-color: #1a3a5a;
  border-color: #ffc107;
  transform: translateY(-2px);
}

.page-getting-started-understanding-bonuses .content-section {
  padding: 60px 0;
}

.page-getting-started-understanding-bonuses .article-content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  line-height: 1.8;
}

.page-getting-started-understanding-bonuses .section-title {
  font-size: 2.2em;
  color: #0A2239; /* Dark blue for main content titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid #E0B400;
  padding-bottom: 10px;
}

.page-getting-started-understanding-bonuses .subsection-title {
  font-size: 1.6em;
  color: #0A2239;
  margin-top: 30px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.page-getting-started-understanding-bonuses .subsection-title::before {
  content: '▶';
  color: #E0B400;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
}

.page-getting-started-understanding-bonuses p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #333;
}

.page-getting-started-understanding-bonuses .text-link {
  color: #E0B400; /* Gold for internal text links */
  text-decoration: none;
  font-weight: bold;
}

.page-getting-started-understanding-bonuses .text-link:hover {
  text-decoration: underline;
}

.page-getting-started-understanding-bonuses .bullet-list, 
.page-getting-started-understanding-bonuses .numbered-list {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-getting-started-understanding-bonuses .bullet-list li, 
.page-getting-started-understanding-bonuses .numbered-list li {
  margin-bottom: 8px;
  font-size: 1.05em;
  color: #333;
}

.page-getting-started-understanding-bonuses .bullet-list li::marker {
  color: #E0B400;
}

.page-getting-started-understanding-bonuses .content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-getting-started-understanding-bonuses .cta-banner {
  background-color: #0A2239;
  color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-getting-started-understanding-bonuses .cta-title {
  font-size: 2em;
  color: #E0B400;
  margin-bottom: 15px;
}

.page-getting-started-understanding-bonuses .cta-description {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #E0E0E0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-getting-started-understanding-bonuses .hero-title {
    font-size: 2em;
  }

  .page-getting-started-understanding-bonuses .hero-subtitle {
    font-size: 1em;
  }

  .page-getting-started-understanding-bonuses .section-title {
    font-size: 1.8em;
  }

  .page-getting-started-understanding-bonuses .subsection-title {
    font-size: 1.4em;
  }

  .page-getting-started-understanding-bonuses .article-content {
    padding: 20px;
  }

  .page-getting-started-understanding-bonuses .cta-title {
    font-size: 1.5em;
  }

  .page-getting-started-understanding-bonuses .cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-getting-started-understanding-bonuses .hero-section {
    padding: 60px 0;
  }

  .page-getting-started-understanding-bonuses .hero-title {
    font-size: 1.6em;
  }

  .page-getting-started-understanding-bonuses .btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-getting-started-understanding-bonuses .section-title {
    font-size: 1.5em;
  }

  .page-getting-started-understanding-bonuses .subsection-title {
    font-size: 1.2em;
  }

  .page-getting-started-understanding-bonuses .article-content {
    padding: 15px;
  }
}