/* style/resources-shbet-homepage-guide.css */

/* Base styles for the page content */
.page-resources-shbet-homepage-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #FFFFFF; /* Default body background */
}

.page-resources-shbet-homepage-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-shbet-homepage-guide__section {
  padding: 60px 0;
  margin-bottom: 0; /* Remove default margin */
}

.page-resources-shbet-homepage-guide__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #017439; /* Primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-resources-shbet-homepage-guide__paragraph {
  font-size: 17px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

/* Color schemes for sections */
.page-resources-shbet-homepage-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-shbet-homepage-guide__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-resources-shbet-homepage-guide__dark-bg .page-resources-shbet-homepage-guide__section-title,
.page-resources-shbet-homepage-guide__dark-bg .page-resources-shbet-homepage-guide__section-title::after {
  color: #ffffff;
  background-color: #ffffff;
}

/* CTA Button Styles */
.page-resources-shbet-homepage-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-resources-shbet-homepage-guide__cta-button--register {
  background: #C30808; /* Register color */
  color: #FFFF00; /* Register font color */
  margin-right: 15px;
}

.page-resources-shbet-homepage-guide__cta-button--register:hover {
  background: #a30606;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}