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

/* Base styles for the page content, assuming body has a dark background from shared.css */
.page-blog-how-to-register-onebox63 {
  color: #ffffff; /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-blog-how-to-register-onebox63__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, relying on body for header offset */
  position: relative;
  overflow: hidden;
}

.page-blog-how-to-register-onebox63__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-how-to-register-onebox63__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-register-onebox63__hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.page-blog-how-to-register-onebox63__main-title {
  font-size: clamp(2em, 5vw, 3em); /* Responsive font size for H1 */
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-how-to-register-onebox63__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly lighter for description */
}

/* Section Titles */
.page-blog-how-to-register-onebox63__section-title {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0; /* Brand color for section titles */
}

/* Text Blocks */
.page-blog-how-to-register-onebox63__text-block {
  margin-bottom: 20px;
  font-size: 1em;
  color: #f0f0f0;
}

/* Light Background Sections (e.g., intro, registration guide, conclusion) */
.page-blog-how-to-register-onebox63__intro-section,
.page-blog-how-to-register-onebox63__registration-guide-section,
.page-blog-how-to-register-onebox63__conclusion-section {
  background: #ffffff; /* White background */
  color: #333333; /* Dark text for light background */
  padding: 60px 0;
}
.page-blog-how-to-register-onebox63__intro-section .page-blog-how-to-register-onebox63__section-title,
.page-blog-how-to-register-onebox63__registration-guide-section .page-blog-how-to-register-onebox63__section-title,
.page-blog-how-to-register-onebox63__conclusion-section .page-blog-how-to-register-onebox63__section-title {
  color: #26A9E0;
}
.page-blog-how-to-register-onebox63__intro-section .page-blog-how-to-register-onebox63__text-block,
.page-blog-how-to-register-onebox63__registration-guide-section .page-blog-how-to-register-onebox63__text-block,
.page-blog-how-to-register-onebox63__registration-guide-section .page-blog-how-to-register-onebox63__list li,
.page-blog-how-to-register-onebox63__conclusion-section .page-blog-how-to-register-onebox63__text-block {
  color: #333333;
}

/* Dark Background Sections (e.g., why register, promo, notes, faq) */
.page-blog-how-to-register-onebox63__why-register-section,
.page-blog-how-to-register-onebox63__promo-section,
.page-blog-how-to-register-onebox63__notes-section,
.page-blog-how-to-register-onebox63__faq-section {
  background: #26A9E0; /* Brand blue background */
  color: #ffffff; /* White text for brand blue background */
  padding: 60px 0;
}
.page-blog-how-to-register-onebox63__why-register-section .page-blog-how-to-register-onebox63__section-title,
.page-blog-how-to-register-onebox63__promo-section .page-blog-how-to-register-onebox63__section-title,
.page-blog-how-to-register-onebox63__notes-section .page-blog-how-to-register-onebox63__section-title,
.page-blog-how-to-register-onebox63__faq-section .page-blog-how-to-register-onebox63__section-title {
  color: #ffffff;
}
.page-blog-how-to-register-onebox63__why-register-section .page-blog-how-to-register-onebox63__text-block,
.page-blog-how-to-register-onebox63__why-register-section .page-blog-how-to-register-onebox63__feature-description,
.page-blog-how-to-register-onebox63__promo-section .page-blog-how-to-register-onebox63__text-block,
.page-blog-how-to-register-onebox63__promo-section .page-blog-how-to-register-onebox63__list li,
.page-blog-how-to-register-onebox63__notes-section .page-blog-how-to-register-onebox63__list li,
.page-blog-how-to-register-onebox63__faq-section .page-blog-how-to-register-onebox63__faq-qtext,
.page-blog-how-to-register-onebox63__faq-section .page-blog-how-to-register-onebox63__faq-answer p {
  color: #ffffff;
}

/* Buttons */
.page-blog-how-to-register-onebox63__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-how-to-register-onebox63__btn-primary {
  background: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-how-to-register-onebox63__btn-primary:hover {
  background: #d46a06;
}

.page-blog-how-to-register-onebox63__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-how-to-register-onebox63__btn-secondary:hover {
  background: #f0f0f0;
  color: #1e87c0;
}

.page-blog-how-to-register-onebox63__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping for multiple buttons */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Feature List (Why Register) */
.page-blog-how-to-register-onebox63__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-how-to-register-onebox63__feature-item {
  background: rgba(255, 255, 255, 0.1); /* Slightly transparent white for items on blue background */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  color: #ffffff;
}

.page-blog-how-to-register-onebox63__feature-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-blog-how-to-register-onebox63__feature-image,
.page-blog-how-to-register-onebox63__guide-image,
.page-blog-how-to-register-onebox63__notes-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  object-fit: cover;
  min-height: 200px; /* Min size for all content images */
}

/* Step-by-Step Guide */
.page-blog-how-to-register-onebox63__step-by-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-blog-how-to-register-onebox63__step-item {
  background: #f8f9fa; /* Light background for steps */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  color: #333333;
}

.page-blog-how-to-register-onebox63__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-how-to-register-onebox63__step-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333333;
}

.page-blog-how-to-register-onebox63__step-description {
  margin-bottom: 20px;
  color: #555555;
}

.page-blog-how-to-register-onebox63__step-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px; /* Min size for all content images */
}

/* Lists */
.page-blog-how-to-register-onebox63__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from parent section */
}

.page-blog-how-to-register-onebox63__list li {
  margin-bottom: 10px;
  color: inherit; /* Inherit color from parent section */
}

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

.page-blog-how-to-register-onebox63__faq-item {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-how-to-register-onebox63__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  list-style: none; /* Hide default summary marker */
  color: #ffffff;
}

.page-blog-how-to-register-onebox63__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default summary marker for webkit */
}

.page-blog-how-to-register-onebox63__faq-qtext {
  flex-grow: 1;
  color: #ffffff;
}

.page-blog-how-to-register-onebox63__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #ffffff;
}

.page-blog-how-to-register-onebox63__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95em;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Responsive Styles */
@media (min-width: 769px) {
  .page-blog-how-to-register-onebox63__step-by-step {
    grid-template-columns: repeat(2, 1fr); /* Two columns for steps on desktop */
  }
  .page-blog-how-to-register-onebox63__step-item:nth-child(even) {
    margin-top: 50px; /* Stagger steps for visual interest */
  }
  .page-blog-how-to-register-onebox63__feature-item {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-register-onebox63__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-how-to-register-onebox63__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
    margin-bottom: 15px;
  }
  .page-blog-how-to-register-onebox63__description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-blog-how-to-register-onebox63__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  /* Images, Videos, Buttons responsive rules */
  .page-blog-how-to-register-onebox63 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-height: 200px !important; /* Ensure min size is maintained */
  }
  
  .page-blog-how-to-register-onebox63__hero-image-wrapper,
  .page-blog-how-to-register-onebox63__container,
  .page-blog-how-to-register-onebox63__feature-item,
  .page-blog-how-to-register-onebox63__step-item,
  .page-blog-how-to-register-onebox63__faq-item,
  .page-blog-how-to-register-onebox63__cta-buttons {
    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-onebox63__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px !important;
  }

  .page-blog-how-to-register-onebox63__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically on mobile */
    gap: 15px !important;
  }

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

  .page-blog-how-to-register-onebox63__intro-section,
  .page-blog-how-to-register-onebox63__why-register-section,
  .page-blog-how-to-register-onebox63__registration-guide-section,
  .page-blog-how-to-register-onebox63__promo-section,
  .page-blog-how-to-register-onebox63__notes-section,
  .page-blog-how-to-register-onebox63__faq-section,
  .page-blog-how-to-register-onebox63__conclusion-section {
    padding: 40px 0;
  }
}