.page-register-login-account-security-tips {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark grey for readability on light backgrounds */
  line-height: 1.6;
  background-color: #f8f8f8; /* Light background */
}

.page-register-login-account-security-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-register-login-account-security-tips__hero {
  background: linear-gradient(135deg, #003366 0%, #FFCC00 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-register-login-account-security-tips__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_security_pattern,geometric_lines,NH88_background]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-register-login-account-security-tips__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-register-login-account-security-tips__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register-login-account-security-tips__subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-register-login-account-security-tips__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Wealth Gold */
  color: #003366; /* Betting Blue */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-register-login-account-security-tips__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-register-login-account-security-tips__hero-image {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

.page-register-login-account-security-tips__img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-register-login-account-security-tips__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}

.page-register-login-account-security-tips__section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.page-register-login-account-security-tips__section-title {
  font-size: 2.8em;
  color: #003366; /* Betting Blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-register-login-account-security-tips__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Wealth Gold */
  border-radius: 2px;
}

.page-register-login-account-security-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444444;
  text-align: justify;
}

.page-register-login-account-security-tips__highlight-text {
  color: #003366;
  font-weight: bold;
}

.page-register-login-account-security-tips__importance .page-register-login-account-security-tips__paragraph {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-register-login-account-security-tips__flex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-register-login-account-security-tips__flex-item {
  flex: 1 1 calc(33% - 40px);
  min-width: 280px;
  background-color: #f2f7fc; /* Light blue tint */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login-account-security-tips__flex-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-register-login-account-security-tips__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-register-login-account-security-tips__item-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 10px;
}

.page-register-login-account-security-tips__item-description {
  font-size: 1em;
  color: #555555;
}

.page-register-login-account-security-tips__accordion {
  margin-top: 30px;
}

.page-register-login-account-security-tips__accordion-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.page-register-login-account-security-tips__accordion-header {
  background-color: #003366;
  color: #ffffff;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.4em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-register-login-account-security-tips__accordion-header:hover {
  background-color: #002244;
}

.page-register-login-account-security-tips__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-register-login-account-security-tips__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-register-login-account-security-tips__accordion-content {
  padding: 20px 25px;
  background-color: #ffffff;
  border-top: 1px solid #eeeeee;
  display: none;
}

.page-register-login-account-security-tips__accordion-content p {
  margin-bottom: 15px;
}

.page-register-login-account-security-tips__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555555;
}

.page-register-login-account-security-tips__list li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-register-login-account-security-tips__ordered-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555555;
}

.page-register-login-account-security-tips__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  line-height: 1.5;
}

.page-register-login-account-security-tips__link-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.page-register-login-account-security-tips__link-button:hover {
  background-color: #e6b800;
}

.page-register-login-account-security-tips__threat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-register-login-account-security-tips__threat-item {
  flex: 1 1 calc(33% - 40px);
  min-width: 280px;
  background-color: #fff3e0; /* Light orange tint */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #FFCC00;
}

.page-register-login-account-security-tips__threat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-register-login-account-security-tips__threat-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.page-register-login-account-security-tips__final-cta {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-register-login-account-security-tips__final-cta-content {
  max-width: 900px;
}

.page-register-login-account-security-tips__final-cta .page-register-login-account-security-tips__section-title {
  color: #FFCC00;
}

.page-register-login-account-security-tips__final-cta .page-register-login-account-security-tips__paragraph {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-register-login-account-security-tips__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-register-login-account-security-tips__title {
    font-size: 2.8em;
  }
  .page-register-login-account-security-tips__subtitle {
    font-size: 1.3em;
  }
  .page-register-login-account-security-tips__section-title {
    font-size: 2.2em;
  }
  .page-register-login-account-security-tips__flex-item, 
  .page-register-login-account-security-tips__threat-item {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .page-register-login-account-security-tips__hero {
    padding: 60px 15px;
  }
  .page-register-login-account-security-tips__title {
    font-size: 2.2em;
  }
  .page-register-login-account-security-tips__subtitle {
    font-size: 1.1em;
  }
  .page-register-login-account-security-tips__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-register-login-account-security-tips__section {
    padding: 40px 0;
  }
  .page-register-login-account-security-tips__section-title {
    font-size: 1.8em;
  }
  .page-register-login-account-security-tips__paragraph {
    font-size: 1em;
  }
  .page-register-login-account-security-tips__flex-grid, 
  .page-register-login-account-security-tips__threat-grid {
    flex-direction: column;
    align-items: center;
  }
  .page-register-login-account-security-tips__flex-item, 
  .page-register-login-account-security-tips__threat-item {
    flex: 1 1 90%;
    max-width: 400px;
  }
  .page-register-login-account-security-tips__accordion-header {
    font-size: 1.2em;
    padding: 15px 20px;
  }
  .page-register-login-account-security-tips__accordion-content {
    padding: 15px 20px;
  }
  .page-register-login-account-security-tips__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-register-login-account-security-tips__title {
    font-size: 1.8em;
  }
  .page-register-login-account-security-tips__subtitle {
    font-size: 1em;
  }
  .page-register-login-account-security-tips__section-title {
    font-size: 1.5em;
  }
  .page-register-login-account-security-tips__icon {
    width: 60px;
    height: 60px;
  }
  .page-register-login-account-security-tips__threat-icon {
    width: 50px;
    height: 50px;
  }
}