.page-resources-sv388-secure-registration {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Deep gray for readability on light background */
  background: var(--secondary-color); /* Defaults to #FFFFFF */
}

.page-resources-sv388-secure-registration__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-sv388-secure-registration__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-sv388-secure-registration__section--intro {
  background: #f9f9f9;
}

.page-resources-sv388-secure-registration__section--process {
  background: #ffffff;
}

.page-resources-sv388-secure-registration__section--security {
  background: #f9f9f9;
}

.page-resources-sv388-secure-registration__section--benefits {
  background: #ffffff;
}

.page-resources-sv388-secure-registration__section--faq {
  background: #f9f9f9;
}

.page-resources-sv388-secure-registration__section--cta-final {
  background: var(--primary-color);
  color: #ffffff;
  padding: 80px 0;
}

.page-resources-sv388-secure-registration__section--cta-final .page-resources-sv388-secure-registration__section-title,
.page-resources-sv388-secure-registration__section--cta-final .page-resources-sv388-secure-registration__text-block {
  color: #ffffff;
}

.page-resources-sv388-secure-registration__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-resources-sv388-secure-registration__text-block {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-resources-sv388-secure-registration__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color) 0%, #a7d9f7 100%); /* Lighter gradient for hero */
}

.page-resources-sv388-secure-registration__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-resources-sv388-secure-registration__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 800px; /* Constrain hero image width */
}

.page-resources-sv388-secure-registration__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-sv388-secure-registration__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff;
}

.page-resources-sv388-secure-registration__main-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-sv388-secure-registration__description {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-sv388-secure-registration__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-sv388-secure-registration__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-sv388-secure-registration__cta-button--register {
  background: #EA7C07; /* Login color for register */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-sv388-secure-registration__cta-button--register:hover {
  background: #d66f06;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-sv388-secure-registration__cta-button--login {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid #ffffff;
}

.page-resources-sv388-secure-registration__cta-button--login:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-sv388-secure-registration__cta-button--final {
  background: #EA7C07;
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-sv388-secure-registration__cta-button--final:hover {
  background: #d66f06;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Features Grid */
.page-resources-sv388-secure-registration__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-sv388-secure-registration__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-sv388-secure-registration__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-sv388-secure-registration__feature-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  width: 400px; /* Match HTML attribute */
  height: 300px; /* Match HTML attribute */
  object-fit: cover;
}

.page-resources-sv388-secure-registration__feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-sv388-secure-registration__feature-description {
  font-size: 16px;
  color: #555555;
}

/* Step List */
.page-resources-sv388-secure-registration__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-resources-sv388-secure-registration__step-item {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  position: relative;
  counter-increment: step-counter;
  padding-left: 100px; /* Space for step number */
}

.page-resources-sv388-secure-registration__step-item::before {
  content: "Bước " counter(step-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  background: var(--primary-color);
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-sv388-secure-registration__step-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-sv388-secure-registration__step-item p {
  font-size: 17px;
  color: #555555;
  margin-bottom: 20px;
}

.page-resources-sv388-secure-registration__step-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 800px; /* Match HTML attribute */
  height: 600px; /* Match HTML attribute */
  object-fit: cover;
}

.page-resources-sv388-secure-registration__info-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #555555;
}

.page-resources-sv388-secure-registration__info-list li {
  margin-bottom: 8px;
  font-size: 16px;
}

.page-resources-sv388-secure-registration__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-sv388-secure-registration__btn-primary:hover {
  background: #1e87c0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Security List */
.page-resources-sv388-secure-registration__security-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-resources-sv388-secure-registration__security-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-resources-sv388-secure-registration__security-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-resources-sv388-secure-registration__security-item p {
  font-size: 16px;
  color: #555555;
}

.page-resources-sv388-secure-registration__section--security img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 1000px; /* Match HTML attribute */
  height: 750px; /* Match HTML attribute */
  object-fit: cover;
}

/* Benefits Grid */
.page-resources-sv388-secure-registration__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-sv388-secure-registration__benefit-card {
  background: #f0f8ff; /* Light blue background */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  border-left: 5px solid var(--primary-color);
}

.page-resources-sv388-secure-registration__benefit-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-resources-sv388-secure-registration__benefit-card p {
  font-size: 16px;
  color: #555555;
}

.page-resources-sv388-secure-registration__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-sv388-secure-registration__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-resources-sv388-secure-registration__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-sv388-secure-registration__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-sv388-secure-registration__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-sv388-secure-registration__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-sv388-secure-registration__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
  pointer-events: none;
}

.page-resources-sv388-secure-registration__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-resources-sv388-secure-registration__faq-item.active .page-resources-sv388-secure-registration__faq-toggle {
  transform: rotate(180deg);
  color: #EA7C07; /* Login color for active toggle */
}

.page-resources-sv388-secure-registration__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #fefefe;
  border-top: 1px solid #eee;
  border-radius: 0 0 8px 8px;
  text-align: left;
}

.page-resources-sv388-secure-registration__faq-item.active .page-resources-sv388-secure-registration__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-resources-sv388-secure-registration__faq-answer p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-sv388-secure-registration__main-title {
    font-size: 42px;
  }
  .page-resources-sv388-secure-registration__section-title {
    font-size: 32px;
  }
  .page-resources-sv388-secure-registration__text-block {
    font-size: 17px;
  }
  .page-resources-sv388-secure-registration__step-item {
    padding-left: 80px;
  }
  .page-resources-sv388-secure-registration__step-item::before {
    width: 50px;
    height: 50px;
    font-size: 16px;
    left: 20px;
    top: 25px;
  }
  .page-resources-sv388-secure-registration__step-title {
    font-size: 24px;
  }
  .page-resources-sv388-secure-registration__security-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-resources-sv388-secure-registration__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-sv388-secure-registration__main-title {
    font-size: 32px;
  }
  .page-resources-sv388-secure-registration__description {
    font-size: 17px;
  }
  .page-resources-sv388-secure-registration__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-sv388-secure-registration__cta-button,
  .page-resources-sv388-secure-registration__btn-primary,
  .page-resources-sv388-secure-registration__btn-secondary,
  .page-resources-sv388-secure-registration a[class*="button"],
  .page-resources-sv388-secure-registration a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-sv388-secure-registration__cta-buttons,
  .page-resources-sv388-secure-registration__button-group,
  .page-resources-sv388-secure-registration__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-resources-sv388-secure-registration__section {
    padding: 40px 0;
  }
  .page-resources-sv388-secure-registration__section-title {
    font-size: 28px;
  }
  .page-resources-sv388-secure-registration__text-block {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-resources-sv388-secure-registration__features-grid,
  .page-resources-sv388-secure-registration__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-sv388-secure-registration__feature-item,
  .page-resources-sv388-secure-registration__benefit-card {
    padding: 25px;
  }
  .page-resources-sv388-secure-registration__feature-title {
    font-size: 20px;
  }
  .page-resources-sv388-secure-registration__step-item {
    padding: 30px 20px 30px 80px;
  }
  .page-resources-sv388-secure-registration__step-item::before {
    width: 45px;
    height: 45px;
    font-size: 14px;
    left: 15px;
    top: 25px;
  }
  .page-resources-sv388-secure-registration__step-title {
    font-size: 22px;
  }
  .page-resources-sv388-secure-registration__step-item p {
    font-size: 15px;
  }
  .page-resources-sv388-secure-registration__info-list {
    margin-left: 15px;
  }
  .page-resources-sv388-secure-registration__info-list li {
    font-size: 15px;
  }
  .page-resources-sv388-secure-registration__security-heading {
    font-size: 20px;
  }
  .page-resources-sv388-secure-registration__security-item p {
    font-size: 15px;
  }
  .page-resources-sv388-secure-registration__faq-question {
    padding: 15px 20px;
  }
  .page-resources-sv388-secure-registration__faq-question h3 {
    font-size: 16px;
  }
  .page-resources-sv388-secure-registration__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
    margin-left: 15px;
  }
  .page-resources-sv388-secure-registration__faq-answer {
    padding: 0 20px;
  }
  .page-resources-sv388-secure-registration__faq-item.active .page-resources-sv388-secure-registration__faq-answer {
    padding: 15px 20px !important;
  }
  .page-resources-sv388-secure-registration__faq-answer p {
    font-size: 15px;
  }
  .page-resources-sv388-secure-registration img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-sv388-secure-registration__section,
  .page-resources-sv388-secure-registration__card,
  .page-resources-sv388-secure-registration__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-sv388-secure-registration__main-title {
    font-size: 28px;
  }
  .page-resources-sv388-secure-registration__section-title {
    font-size: 24px;
  }
  .page-resources-sv388-secure-registration__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-resources-sv388-secure-registration__step-title {
    font-size: 20px;
  }
  .page-resources-sv388-secure-registration__security-heading {
    font-size: 18px;
  }
  .page-resources-sv388-secure-registration__benefit-title {
    font-size: 20px;
  }
}