.page-resources-safe-registration-guide {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f5f5f5;
}

.page-resources-safe-registration-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-safe-registration-guide__dark-bg {
  background-color: #8B0000; /* Dark red auxiliary color */
  color: #ffffff;
}

.page-resources-safe-registration-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Hero Section */
.page-resources-safe-registration-guide__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px);
  min-height: 500px;
  overflow: hidden;
}

.page-resources-safe-registration-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.page-resources-safe-registration-guide__hero-section .page-resources-safe-registration-guide__container {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 50px;
}

.page-resources-safe-registration-guide__hero-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Gold main color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-safe-registration-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-safe-registration-guide__btn-primary,
.page-resources-safe-registration-guide__btn-secondary {
  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;
  text-align: center;
  box-sizing: border-box;
}

.page-resources-safe-registration-guide__btn-primary {
  background-color: #FFD700; /* Gold main color */
  color: #8B0000; /* Dark red text for contrast */
  border: 2px solid #FFD700;
  margin: 10px;
}

.page-resources-safe-registration-guide__btn-primary:hover {
  background-color: #e6c200;
  color: #6a0000;
  border-color: #e6c200;
}

.page-resources-safe-registration-guide__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin: 10px;
}

.page-resources-safe-registration-guide__btn-secondary:hover {
  background-color: #FFD700;
  color: #8B0000; /* Dark red text */
}

/* General Section Styles */
.page-resources-safe-registration-guide__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
  color: #8B0000; /* Dark red auxiliary color */
}

.page-resources-safe-registration-guide__dark-bg .page-resources-safe-registration-guide__section-title {
  color: #FFD700; /* Gold text on dark background */
}

.page-resources-safe-registration-guide__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-safe-registration-guide__text-block p,
.page-resources-safe-registration-guide__text-block li {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-resources-safe-registration-guide__text-block a {
  color: #8B0000;
  text-decoration: underline;
}

.page-resources-safe-registration-guide__dark-bg .page-resources-safe-registration-guide__text-block a {
  color: #FFD700;
}

/* Introduction Section */
.page-resources-safe-registration-guide__introduction-section {
  padding: 60px 0;
}

/* Steps Section */
.page-resources-safe-registration-guide__steps-section {
  padding: 60px 0;
}

.page-resources-safe-registration-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-safe-registration-guide__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-resources-safe-registration-guide__step-icon {
  width: 100%; /* Ensure image fills container */
  max-width: 400px; /* Max width for consistency */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-safe-registration-guide__step-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #8B0000;
}

/* Security Section */
.page-resources-safe-registration-guide__security-section {
  padding: 60px 0;
}

.page-resources-safe-registration-guide__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-resources-safe-registration-guide__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* FAQ Section */
.page-resources-safe-registration-guide__faq-section,
.page-resources-safe-registration-guide__faq-general-section {
  padding: 60px 0;
}

.page-resources-safe-registration-guide__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-resources-safe-registration-guide__faq-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-resources-safe-registration-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #FFD700;
  color: #8B0000;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-safe-registration-guide__faq-question:hover {
  background-color: #e6c200;
}

.page-resources-safe-registration-guide__faq-question h3 {
  margin: 0;
  font-size: 1.1em;
  color: #8B0000;
}

.page-resources-safe-registration-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-safe-registration-guide__faq-item.active .page-resources-safe-registration-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-safe-registration-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
  color: #333333;
}

.page-resources-safe-registration-guide__faq-item.active .page-resources-safe-registration-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

/* Benefits Section */
.page-resources-safe-registration-guide__benefits-section {
  padding: 60px 0;
}

.page-resources-safe-registration-guide__benefits-section ul {
  list-style: none;
  padding: 0;
}

.page-resources-safe-registration-guide__benefits-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-resources-safe-registration-guide__benefits-section ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
}

.page-resources-safe-registration-guide__benefits-section .page-resources-safe-registration-guide__text-block h3 {
  color: #FFD700;
  font-size: 1.2em;
  margin-bottom: 10px;
}

/* Call to Action Section */
.page-resources-safe-registration-guide__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-resources-safe-registration-guide__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-safe-registration-guide__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-safe-registration-guide__hero-title {
    font-size: 2.8em;
  }

  .page-resources-safe-registration-guide__section-title {
    font-size: 2em;
  }

  .page-resources-safe-registration-guide__content-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-safe-registration-guide__security-section .page-resources-safe-registration-guide__image-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  .page-resources-safe-registration-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-safe-registration-guide__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-safe-registration-guide__hero-title {
    font-size: 2em;
  }

  .page-resources-safe-registration-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-safe-registration-guide__btn-primary,
  .page-resources-safe-registration-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
    margin: 5px 0;
  }

  .page-resources-safe-registration-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-resources-safe-registration-guide__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }

  .page-resources-safe-registration-guide__section-subtitle {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-resources-safe-registration-guide__steps-grid {
    gap: 20px;
  }

  .page-resources-safe-registration-guide__step-item {
    padding: 20px;
  }

  .page-resources-safe-registration-guide__faq-question {
    padding: 15px;
    font-size: 1em;
  }

  .page-resources-safe-registration-guide__faq-question h3 {
    font-size: 1em;
  }

  .page-resources-safe-registration-guide__faq-answer {
    padding: 0 15px;
  }

  .page-resources-safe-registration-guide__faq-item.active .page-resources-safe-registration-guide__faq-answer {
    padding: 15px;
  }

  /* Image responsiveness for mobile */
  .page-resources-safe-registration-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-safe-registration-guide__section,
  .page-resources-safe-registration-guide__card,
  .page-resources-safe-registration-guide__container,
  .page-resources-safe-registration-guide__content-grid,
  .page-resources-safe-registration-guide__steps-grid,
  .page-resources-safe-registration-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-resources-safe-registration-guide__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .page-resources-safe-registration-guide__hero-section .page-resources-safe-registration-guide__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Video responsiveness for mobile */
  .page-resources-safe-registration-guide video,
  .page-resources-safe-registration-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-safe-registration-guide__video-section,
  .page-resources-safe-registration-guide__video-container,
  .page-resources-safe-registration-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-resources-safe-registration-guide__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  
  .page-resources-safe-registration-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}