.page-beginner-guide-account-security {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-beginner-guide-account-security__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-beginner-guide-account-security__hero {
  background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Dark blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFCC00; /* Gold accent */
}

.page-beginner-guide-account-security__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Gold title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-account-security__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-beginner-guide-account-security__hero-btn {
  display: inline-block;
  background-color: #FFCC00; /* Gold button */
  color: #003366; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFCC00;
}

.page-beginner-guide-account-security__hero-btn:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-account-security__section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-beginner-guide-account-security__section:nth-of-type(even) {
  background-color: #eef4f8; /* Lighter shade of blue-gray */
}

.page-beginner-guide-account-security__section-title {
  font-size: 2.5em;
  color: #003366; /* Dark blue heading */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-beginner-guide-account-security__subsection-title {
  font-size: 1.8em;
  color: #004488; /* Slightly lighter blue */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFCC00;
  padding-left: 15px;
}

.page-beginner-guide-account-security__list,
.page-beginner-guide-account-security__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page-beginner-guide-account-security__ordered-list {
  list-style-type: decimal;
}

.page-beginner-guide-account-security__list li,
.page-beginner-guide-account-security__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-beginner-guide-account-security__list li strong {
  color: #003366;
}

.page-beginner-guide-account-security p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-beginner-guide-account-security__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-beginner-guide-account-security__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.page-beginner-guide-account-security__image:hover {
  transform: scale(1.02);
}

.page-beginner-guide-account-security__btn {
  display: inline-block;
  background-color: #CC0000; /* Red accent button */
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-beginner-guide-account-security__btn:hover {
  background-color: #990000;
  transform: translateY(-2px);
}

.page-beginner-guide-account-security__btn--primary {
  background-color: #FFCC00; /* Gold primary button */
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-beginner-guide-account-security__btn--primary:hover {
  background-color: #e6b800;
  color: #001a33;
  border-color: #e6b800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-beginner-guide-account-security__hero-title {
    font-size: 2.5em;
  }

  .page-beginner-guide-account-security__hero-subtitle {
    font-size: 1em;
  }

  .page-beginner-guide-account-security__section-title {
    font-size: 2em;
  }

  .page-beginner-guide-account-security__subsection-title {
    font-size: 1.5em;
  }

  .page-beginner-guide-account-security__list li,
  .page-beginner-guide-account-security__ordered-list li,
  .page-beginner-guide-account-security p {
    font-size: 1em;
  }

  .page-beginner-guide-account-security__hero {
    padding: 80px 0;
  }

  .page-beginner-guide-account-security__section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-account-security__hero-title {
    font-size: 2em;
  }

  .page-beginner-guide-account-security__hero-subtitle {
    font-size: 0.9em;
  }

  .page-beginner-guide-account-security__hero-btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-beginner-guide-account-security__section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-account-security__subsection-title {
    font-size: 1.3em;
  }

  .page-beginner-guide-account-security__list,
  .page-beginner-guide-account-security__ordered-list {
    margin-left: 15px;
  }
}