/* style/resources-79sodo-registration-tutorial.css */

/* Base styles for the page content */
.page-resources-79sodo-registration-tutorial {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css (#0a0a0a) */
}

.page-resources-79sodo-registration-tutorial__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-79sodo-registration-tutorial__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-79sodo-registration-tutorial__sub-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-79sodo-registration-tutorial__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Slightly off-white for readability on dark background */
}

/* Hero Section */
.page-resources-79sodo-registration-tutorial__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-79sodo-registration-tutorial__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-79sodo-registration-tutorial__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-resources-79sodo-registration-tutorial__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
}

.page-resources-79sodo-registration-tutorial__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-79sodo-registration-tutorial__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Buttons */
.page-resources-79sodo-registration-tutorial__btn-primary,
.page-resources-79sodo-registration-tutorial__btn-secondary {
  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, border-color 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-resources-79sodo-registration-tutorial__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
  margin-right: 15px;
}

.page-resources-79sodo-registration-tutorial__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-resources-79sodo-registration-tutorial__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-79sodo-registration-tutorial__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-79sodo-registration-tutorial__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Section styles */
.page-resources-79sodo-registration-tutorial__intro-section,
.page-resources-79sodo-registration-tutorial__benefits-section,
.page-resources-79sodo-registration-tutorial__tutorial-section,
.page-resources-79sodo-registration-tutorial__verification-section,
.page-resources-79sodo-registration-tutorial__faq-section,
.page-resources-79sodo-registration-tutorial__cta-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-79sodo-registration-tutorial__intro-section,
.page-resources-79sodo-registration-tutorial__verification-section,
.page-resources-79sodo-registration-tutorial__cta-section {
  background-color: #0d0d0d; /* Slightly lighter dark background for contrast */
}

.page-resources-79sodo-registration-tutorial__dark-bg .page-resources-79sodo-registration-tutorial__section-title {
  color: #26A9E0;
}

.page-resources-79sodo-registration-tutorial__dark-bg .page-resources-79sodo-registration-tutorial__text-block {
  color: #f0f0f0;
}

.page-resources-79sodo-registration-tutorial__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-79sodo-registration-tutorial__image-center {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Benefits List */
.page-resources-79sodo-registration-tutorial__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-79sodo-registration-tutorial__benefits-item {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: #ffffff;
}

.page-resources-79sodo-registration-tutorial__benefits-heading {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-79sodo-registration-tutorial__benefits-description {
  font-size: 1em;
  color: #e0e0e0;
}

/* Video Section */
.page-resources-79sodo-registration-tutorial__video-section {
  text-align: center;
  padding-top: 80px; /* Adjusted for this section, header offset is on hero */
}

.page-resources-79sodo-registration-tutorial__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-79sodo-registration-tutorial__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  cursor: pointer;
}

/* Tutorial Steps */
.page-resources-79sodo-registration-tutorial__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-resources-79sodo-registration-tutorial__step-title {
  font-size: 2em;
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-resources-79sodo-registration-tutorial__step-description {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.page-resources-79sodo-registration-tutorial__step-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-79sodo-registration-tutorial__info-list {
  list-style: disc inside;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-resources-79sodo-registration-tutorial__info-list li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-resources-79sodo-registration-tutorial__info-list li strong {
  color: #26A9E0;
}

/* FAQ Section */
.page-resources-79sodo-registration-tutorial__faq-list {
  margin-top: 40px;
}

.page-resources-79sodo-registration-tutorial__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.page-resources-79sodo-registration-tutorial__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-resources-79sodo-registration-tutorial__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-resources-79sodo-registration-tutorial__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-resources-79sodo-registration-tutorial__faq-qtext {
  color: #26A9E0;
}

.page-resources-79sodo-registration-tutorial__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #ffffff;
}

.page-resources-79sodo-registration-tutorial__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #e0e0e0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-resources-79sodo-registration-tutorial__hero-title {
    font-size: 2.8em;
  }

  .page-resources-79sodo-registration-tutorial__hero-description {
    font-size: 1.1em;
  }

  .page-resources-79sodo-registration-tutorial__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-79sodo-registration-tutorial__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }

  .page-resources-79sodo-registration-tutorial__hero-title {
    font-size: 2.2em;
  }

  .page-resources-79sodo-registration-tutorial__hero-description {
    font-size: 1em;
  }

  .page-resources-79sodo-registration-tutorial__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-79sodo-registration-tutorial__sub-title {
    font-size: 1.5em;
  }

  .page-resources-79sodo-registration-tutorial__text-block {
    font-size: 0.95em;
  }

  .page-resources-79sodo-registration-tutorial__btn-primary,
  .page-resources-79sodo-registration-tutorial__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 15px;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-79sodo-registration-tutorial__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-resources-79sodo-registration-tutorial__intro-section,
  .page-resources-79sodo-registration-tutorial__benefits-section,
  .page-resources-79sodo-registration-tutorial__tutorial-section,
  .page-resources-79sodo-registration-tutorial__verification-section,
  .page-resources-79sodo-registration-tutorial__faq-section,
  .page-resources-79sodo-registration-tutorial__cta-section {
    padding: 60px 0;
  }

  .page-resources-79sodo-registration-tutorial__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Image responsiveness */
  .page-resources-79sodo-registration-tutorial img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video responsiveness */
  .page-resources-79sodo-registration-tutorial video,
  .page-resources-79sodo-registration-tutorial__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-79sodo-registration-tutorial__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    margin: 30px auto;
  }

  .page-resources-79sodo-registration-tutorial__benefits-list {
    grid-template-columns: 1fr;
  }

  .page-resources-79sodo-registration-tutorial__step-card {
    padding: 25px;
  }

  .page-resources-79sodo-registration-tutorial__step-title {
    font-size: 1.5em;
  }

  .page-resources-79sodo-registration-tutorial__faq-item summary {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-resources-79sodo-registration-tutorial__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-79sodo-registration-tutorial__hero-title {
    font-size: 1.8em;
  }

  .page-resources-79sodo-registration-tutorial__hero-description {
    font-size: 0.9em;
  }

  .page-resources-79sodo-registration-tutorial__section-title {
    font-size: 1.5em;
  }

  .page-resources-79sodo-registration-tutorial__step-title {
    font-size: 1.3em;
  }
}