/* style/blog-how-to-register-cwin333.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-how-to-register-cwin333 {
  color: var(--text-main); /* #F2FFF6 */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-blog-how-to-register-cwin333__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--background); /* #08160F */
  overflow: hidden;
}

.page-blog-how-to-register-cwin333__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height of the image wrapper */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-how-to-register-cwin333__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-width: 100%; /* Ensure image is responsive */
}

.page-blog-how-to-register-cwin333__hero-content {
  text-align: center;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-blog-how-to-register-cwin333__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.page-blog-how-to-register-cwin333__intro-text {
  font-size: 1.2rem;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Area */
.page-blog-how-to-register-cwin333__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background); /* #08160F */
  color: var(--text-main); /* #F2FFF6 */
}

.page-blog-how-to-register-cwin333__section-wrapper {
  margin-bottom: 50px;
  padding: 30px;
  background-color: var(--card-bg); /* #11271B */
  border-radius: 10px;
  border: 1px solid var(--border);
}

.page-blog-how-to-register-cwin333__section-title {
  font-size: 2.2rem;
  color: var(--gold); /* #F2C14E */
  margin-bottom: 25px;
  font-weight: bold;
  border-bottom: 2px solid var(--divider); /* #1E3A2A */
  padding-bottom: 10px;
}

.page-blog-how-to-register-cwin333__sub-title {
  font-size: 1.6rem;
  color: var(--text-main); /* #F2FFF6 */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-register-cwin333 p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-blog-how-to-register-cwin333__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-blog-how-to-register-cwin333__list li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.page-blog-how-to-register-cwin333__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
}

/* Call to Action Buttons */
.page-blog-how-to-register-cwin333__cta-block {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-how-to-register-cwin333__btn-primary,
.page-blog-how-to-register-cwin333__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-blog-how-to-register-cwin333__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-how-to-register-cwin333__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-how-to-register-cwin333__btn-secondary {
  background-color: transparent;
  color: var(--deep-green); /* #0A4B2C */
  border: 2px solid var(--deep-green); /* #0A4B2C */
  margin-left: 20px;
}

.page-blog-how-to-register-cwin333__btn-secondary:hover {
  background-color: var(--deep-green); /* #0A4B2C */
  color: #ffffff;
}

.page-blog-how-to-register-cwin333__text-link {
  color: var(--glow); /* #57E38D */
  text-decoration: underline;
  font-weight: bold;
}

.page-blog-how-to-register-cwin333__text-link:hover {
  color: var(--gold); /* #F2C14E */
}

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

.page-blog-how-to-register-cwin333__faq-item {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border); /* #2E7A4E */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-register-cwin333__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--text-main); /* #F2FFF6 */
  cursor: pointer;
  background-color: rgba(34, 199, 104, 0.1); /* Lighter background for question */
  transition: background-color 0.3s ease;
}

.page-blog-how-to-register-cwin333__faq-question:hover {
  background-color: rgba(34, 199, 104, 0.2);
}

.page-blog-how-to-register-cwin333__faq-item[open] .page-blog-how-to-register-cwin333__faq-question {
  background-color: rgba(34, 199, 104, 0.2);
}

.page-blog-how-to-register-cwin333__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-register-cwin333__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow); /* #57E38D */
}

.page-blog-how-to-register-cwin333__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: var(--text-secondary); /* #A7D9B8 */
}

/* Details element specific styling for FAQ */
.page-blog-how-to-register-cwin333__faq-item summary {
  list-style: none;
}

.page-blog-how-to-register-cwin333__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-register-cwin333__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-how-to-register-cwin333__intro-text {
    font-size: 1.1rem;
  }

  .page-blog-how-to-register-cwin333__section-title {
    font-size: 2rem;
  }

  .page-blog-how-to-register-cwin333__sub-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-register-cwin333 {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-blog-how-to-register-cwin333__hero-content {
    margin-top: 20px;
  }

  .page-blog-how-to-register-cwin333__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-how-to-register-cwin333__intro-text {
    font-size: 1rem;
  }

  .page-blog-how-to-register-cwin333__content-area {
    padding: 30px 15px;
  }

  .page-blog-how-to-register-cwin333__section-wrapper {
    padding: 20px;
    margin-bottom: 30px;
  }

  .page-blog-how-to-register-cwin333__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-blog-how-to-register-cwin333__sub-title {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-how-to-register-cwin333__list {
    margin-left: 15px;
  }

  .page-blog-how-to-register-cwin333__btn-primary,
  .page-blog-how-to-register-cwin333__btn-secondary,
  .page-blog-how-to-register-cwin333 a[class*="button"],
  .page-blog-how-to-register-cwin333 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;
    margin-left: 0 !important; /* Reset margin for single column */
    margin-bottom: 15px; /* Add space between stacked buttons */
  }

  .page-blog-how-to-register-cwin333__cta-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 15px; /* Add padding to CTA block */
  }

  .page-blog-how-to-register-cwin333__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

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

  .page-blog-how-to-register-cwin333__section,
  .page-blog-how-to-register-cwin333__card,
  .page-blog-how-to-register-cwin333__container,
  .page-blog-how-to-register-cwin333__hero-image-wrapper,
  .page-blog-how-to-register-cwin333__video-section,
  .page-blog-how-to-register-cwin333__video-container,
  .page-blog-how-to-register-cwin333__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-how-to-register-cwin333__hero-section .page-blog-how-to-register-cwin333__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-blog-how-to-register-cwin333__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

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

@media (max-width: 480px) {
  .page-blog-how-to-register-cwin333__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .page-blog-how-to-register-cwin333__section-title {
    font-size: 1.6rem;
  }

  .page-blog-how-to-register-cwin333__sub-title {
    font-size: 1.2rem;
  }

  .page-blog-how-to-register-cwin333__btn-primary,
  .page-blog-how-to-register-cwin333__btn-secondary {
    font-size: 1rem;
    padding: 12px 20px;
  }
}