.page-blog-how-to-register-st666 {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-blog-how-to-register-st666__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-register-st666__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px; /* Space below content */
  background-color: #08160F; /* Ensure background matches body for seamless look */
}

.page-blog-how-to-register-st666__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-how-to-register-st666__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum size */
}

.page-blog-how-to-register-st666__hero-content {
  padding-top: 40px; /* Small padding from image */
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-register-st666__hero-title {
  font-size: clamp(2em, 5vw, 3em); /* Responsive font size, not fixed large */
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 1px;
}

.page-blog-how-to-register-st666__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* General Section Styling */
.page-blog-how-to-register-st666__section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-blog-how-to-register-st666__section-title {
  font-size: 2.2em;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-how-to-register-st666__section-text {
  font-size: 1.05em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

/* Buttons */
.page-blog-how-to-register-st666__cta-button,
.page-blog-how-to-register-st666__btn-primary,
.page-blog-how-to-register-st666__btn-secondary,
.page-blog-how-to-register-st666 a[class*="button"],
.page-blog-how-to-register-st666 a[class*="btn"] {
  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;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-how-to-register-st666__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-blog-how-to-register-st666__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-how-to-register-st666__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Lighter green from button gradient */
  border: 2px solid #2AD16F;
}

.page-blog-how-to-register-st666__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

/* Video Section */
.page-blog-how-to-register-st666__video-guide-section {
  padding-top: 10px; /* Small top padding */
}

.page-blog-how-to-register-st666__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
  background-color: #11271B; /* Card BG for video placeholder */
  border-radius: 10px;
  width: 100%; /* Desktop width */
  max-width: 100%; /* Desktop max-width */
  box-sizing: border-box;
}

.page-blog-how-to-register-st666__video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
}

.page-blog-how-to-register-st666__video-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; /* Ensure link is clickable over video */
}

/* Registration Steps */
.page-blog-how-to-register-st666__registration-steps-section {
  background-color: #11271B; /* Card BG */
  border-top: 1px solid #2E7A4E; /* Divider */
  border-bottom: 1px solid #2E7A4E; /* Divider */
}

.page-blog-how-to-register-st666__step-card {
  background-color: #0A4B2C; /* Deep Green, slightly lighter than background */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-register-st666__step-title {
  font-size: 1.8em;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-how-to-register-st666__step-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #08160F; /* Background */
}

.page-blog-how-to-register-st666__step-image {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-register-st666__step-description {
  font-size: 1em;
  margin-bottom: 15px;
  text-align: justify;
}

.page-blog-how-to-register-st666__step-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-how-to-register-st666__step-list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.page-blog-how-to-register-st666__step-list-item::before {
  content: '✓';
  color: #2AD16F; /* Lighter green */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-blog-how-to-register-st666__step-cta-button {
  margin-top: 20px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Tips Section */
.page-blog-how-to-register-st666__tips-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-blog-how-to-register-st666__tips-list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-register-st666__tips-list-item::before {
  content: '💡';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

/* Benefits Section */
.page-blog-how-to-register-st666__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-how-to-register-st666__benefit-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-register-st666__benefit-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  text-align: center;
}

.page-blog-how-to-register-st666__benefit-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

.page-blog-how-to-register-st666__benefits-image-wrapper {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #08160F; /* Background */
}

.page-blog-how-to-register-st666__benefits-image {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-blog-how-to-register-st666__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-register-st666__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-register-st666__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  cursor: pointer;
  list-style: none; /* Remove default marker */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-blog-how-to-register-st666__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-register-st666__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F; /* Lighter green */
  margin-left: 15px;
}

.page-blog-how-to-register-st666__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

.page-blog-how-to-register-st666__faq-answer p {
  margin-bottom: 0;
}

/* Final CTA Section */
.page-blog-how-to-register-st666__cta-final-section {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-blog-how-to-register-st666__cta-final-wrapper {
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  display: inline-block; /* To center the image and button */
  max-width: 100%;
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-how-to-register-st666__cta-final-image {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-register-st666__cta-final-section .page-blog-how-to-register-st666__btn-primary {
  margin-top: 30px;
  font-size: 1.2em;
  padding: 18px 35px;
  position: relative;
  z-index: 2; /* Ensure button is above image if any overlap */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-how-to-register-st666__hero-title {
    font-size: clamp(1.8em, 6vw, 2.8em);
  }

  .page-blog-how-to-register-st666__section-title {
    font-size: 2em;
  }

  .page-blog-how-to-register-st666__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-register-st666__container {
    padding: 0 15px;
  }

  .page-blog-how-to-register-st666__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-how-to-register-st666__hero-title {
    font-size: clamp(1.6em, 7vw, 2.5em);
  }

  .page-blog-how-to-register-st666__hero-description {
    font-size: 1em;
  }

  .page-blog-how-to-register-st666__section {
    padding: 40px 0;
  }

  .page-blog-how-to-register-st666__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-how-to-register-st666__section-text {
    font-size: 0.95em;
  }

  /* Images and Videos Responsive */
  .page-blog-how-to-register-st666 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-register-st666 video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-register-st666__hero-image-wrapper,
  .page-blog-how-to-register-st666__step-image-wrapper,
  .page-blog-how-to-register-st666__benefits-image-wrapper,
  .page-blog-how-to-register-st666__cta-final-wrapper,
  .page-blog-how-to-register-st666__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-how-to-register-st666__video-guide-section {
    padding-top: 10px !important; /* body has --header-offset */
  }

  /* Buttons Responsive */
  .page-blog-how-to-register-st666__cta-button,
  .page-blog-how-to-register-st666__btn-primary,
  .page-blog-how-to-register-st666__btn-secondary,
  .page-blog-how-to-register-st666 a[class*="button"],
  .page-blog-how-to-register-st666 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-blog-how-to-register-st666__hero-cta-button {
    width: auto !important; /* Allow button to shrink if text is short */
    max-width: 80% !important; /* Max width to avoid being too wide */
    margin-left: auto;
    margin-right: auto;
  }

  .page-blog-how-to-register-st666__step-cta-button {
    width: auto !important;
    max-width: 90% !important;
  }

  .page-blog-how-to-register-st666__cta-final-section .page-blog-how-to-register-st666__btn-primary {
    width: auto !important;
    max-width: 80% !important;
  }

  .page-blog-how-to-register-st666__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-how-to-register-st666__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-how-to-register-st666__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-register-st666__hero-title {
    font-size: clamp(1.4em, 8vw, 2em);
  }

  .page-blog-how-to-register-st666__section-title {
    font-size: 1.6em;
  }

  .page-blog-how-to-register-st666__step-title {
    font-size: 1.5em;
  }

  .page-blog-how-to-register-st666__benefit-title {
    font-size: 1.2em;
  }
}