.page-blog-how-to-register-sunwim {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary - Light color for general text on dark background */
  background-color: #08160F; /* Background */
}

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

.page-blog-how-to-register-sunwim__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding */
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
  overflow: hidden;
}

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

.page-blog-how-to-register-sunwim__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-blog-how-to-register-sunwim__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  color: #F2FFF6; /* Text Main */
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.page-blog-how-to-register-sunwim__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-register-sunwim__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-register-sunwim__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-register-sunwim__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-how-to-register-sunwim__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

.page-blog-how-to-register-sunwim__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: 700;
  position: relative;
}

.page-blog-how-to-register-sunwim__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F, #13994A);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-how-to-register-sunwim__text-block {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-register-sunwim__content-section,
.page-blog-how-to-register-sunwim__steps-section,
.page-blog-how-to-register-sunwim__tips-section,
.page-blog-how-to-register-sunwim__common-errors-section,
.page-blog-how-to-register-sunwim__benefits-section,
.page-blog-how-to-register-sunwim__faq-section,
.page-blog-how-to-register-sunwim__conclusion-section {
  padding: 40px 0;
}

.page-blog-how-to-register-sunwim__step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-register-sunwim__step-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
}

.page-blog-how-to-register-sunwim__step-item:hover {
  transform: translateY(-5px);
}

.page-blog-how-to-register-sunwim__step-icon {
  margin-bottom: 20px;
}

.page-blog-how-to-register-sunwim__step-icon img {
  
  
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.page-blog-how-to-register-sunwim__step-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-blog-how-to-register-sunwim__step-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-register-sunwim__cta-block {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  border: 1px solid #2E7A4E;
}

.page-blog-how-to-register-sunwim__cta-text {
  font-size: 1.2rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 25px;
  font-weight: 600;
}

.page-blog-how-to-register-sunwim__tip-list,
.page-blog-how-to-register-sunwim__error-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-register-sunwim__tip-item,
.page-blog-how-to-register-sunwim__error-item {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-how-to-register-sunwim__tip-title,
.page-blog-how-to-register-sunwim__error-title {
  font-size: 1.4rem;
  color: #57E38D; /* Glow */
  margin-bottom: 10px;
}

.page-blog-how-to-register-sunwim__tip-description,
.page-blog-how-to-register-sunwim__error-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-register-sunwim__benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-register-sunwim__benefit-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
}

.page-blog-how-to-register-sunwim__benefit-card:hover {
  transform: translateY(-5px);
}

.page-blog-how-to-register-sunwim__benefit-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-how-to-register-sunwim__benefit-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-blog-how-to-register-sunwim__benefit-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-register-sunwim__faq-list {
  margin-top: 40px;
}

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

.page-blog-how-to-register-sunwim__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #1E3A2A; /* Divider - slightly darker for summary */
  border-bottom: 1px solid #2E7A4E;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-register-sunwim__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-blog-how-to-register-sunwim__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2AD16F;
  margin-left: 15px;
}

.page-blog-how-to-register-sunwim__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
}

.page-blog-how-to-register-sunwim__faq-item[open] .page-blog-how-to-register-sunwim__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

.page-blog-how-to-register-sunwim__conclusion-section .page-blog-how-to-register-sunwim__cta-block {
  margin-top: 40px;
  background-color: #1E3A2A; /* Divider */
}

/* General image styling to prevent small icons */
.page-blog-how-to-register-sunwim img {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-how-to-register-sunwim__hero-content {
    max-width: 700px;
  }
  .page-blog-how-to-register-sunwim__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-how-to-register-sunwim__hero-description {
    font-size: clamp(0.9rem, 2.2vw, 1.2rem);
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-register-sunwim__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-how-to-register-sunwim__hero-content {
    position: static;
    transform: none;
    padding: 20px;
    margin-top: 20px;
  }

  .page-blog-how-to-register-sunwim__hero-image-wrapper {
    max-height: 300px;
  }

  .page-blog-how-to-register-sunwim__main-title {
    font-size: 2.2rem;
  }

  .page-blog-how-to-register-sunwim__hero-description {
    font-size: 1rem;
  }

  .page-blog-how-to-register-sunwim__section-title {
    font-size: 2rem;
    margin-top: 40px;
  }

  .page-blog-how-to-register-sunwim__step-list,
  .page-blog-how-to-register-sunwim__tip-list,
  .page-blog-how-to-register-sunwim__error-list,
  .page-blog-how-to-register-sunwim__benefit-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-register-sunwim__cta-button,
  .page-blog-how-to-register-sunwim__cta-button--large {
    padding: 12px 20px !important;
    font-size: 1rem !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-register-sunwim__cta-block,
  .page-blog-how-to-register-sunwim__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-blog-how-to-register-sunwim__step-icon img {
    
    
    min-
    min-
  }

  .page-blog-how-to-register-sunwim__benefit-card img {
    
  }

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

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