/* style/resources-789-club-registration-process.css */
.page-resources-789-club-registration-process {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: var(--background-color, #ffffff);
}

.page-resources-789-club-registration-process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-789-club-registration-process__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-789-club-registration-process__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-789-club-registration-process__section-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-resources-789-club-registration-process__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below header */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-resources-789-club-registration-process__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-resources-789-club-registration-process__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.page-resources-789-club-registration-process__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-resources-789-club-registration-process__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-789-club-registration-process__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-resources-789-club-registration-process__btn-primary,
.page-resources-789-club-registration-process__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;
  box-sizing: border-box;
  max-width: 100%; /* Ensure button doesn't overflow */
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-789-club-registration-process__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-789-club-registration-process__btn-primary:hover {
  background-color: #1a8ccb;
  border-color: #1a8ccb;
}

.page-resources-789-club-registration-process__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-789-club-registration-process__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

/* Why Register Section */
.page-resources-789-club-registration-process__why-register {
  background-color: #f8f8f8;
}

.page-resources-789-club-registration-process__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-789-club-registration-process__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-resources-789-club-registration-process__feature-card:hover {
  transform: translateY(-10px);
}

.page-resources-789-club-registration-process__feature-icon {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-789-club-registration-process__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-789-club-registration-process__feature-text {
  font-size: 1em;
  color: #555555;
}

/* Registration Steps Section */
.page-resources-789-club-registration-process__registration-steps {
  background-color: #ffffff;
}

.page-resources-789-club-registration-process__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-789-club-registration-process__step-card {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  color: #333333;
}

.page-resources-789-club-registration-process__step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-resources-789-club-registration-process__step-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-resources-789-club-registration-process__step-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-resources-789-club-registration-process__step-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

/* Important Notes Section */
.page-resources-789-club-registration-process__important-notes {
  background-color: #f8f8f8;
}

.page-resources-789-club-registration-process__notes-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-resources-789-club-registration-process__notes-list li {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: #333333;
}

.page-resources-789-club-registration-process__note-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 10px;
}

/* Troubleshooting Section */
.page-resources-789-club-registration-process__troubleshooting {
  background-color: #ffffff;
}

.page-resources-789-club-registration-process__troubleshooting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-789-club-registration-process__trouble-card {
  background-color: #fff3e0; /* Light orange for attention */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  color: #333333;
}

.page-resources-789-club-registration-process__trouble-title {
  font-size: 1.4em;
  color: #EA7C07; /* Login color for troubleshooting */
  margin-bottom: 15px;
}

/* FAQ Section */
.page-resources-789-club-registration-process__faq-section {
  background-color: #f8f8f8;
}

.page-resources-789-club-registration-process__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-resources-789-club-registration-process__faq-item {
  background-color: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  color: #333333;
}

.page-resources-789-club-registration-process__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #e6f7ff;
  border-bottom: 1px solid #e0e0e0;
  user-select: none;
}

.page-resources-789-club-registration-process__faq-item[open] > .page-resources-789-club-registration-process__faq-question {
  border-bottom: 1px solid #d0d0d0;
}

.page-resources-789-club-registration-process__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-resources-789-club-registration-process__faq-item summary {
  list-style: none;
}

.page-resources-789-club-registration-process__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-resources-789-club-registration-process__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #555555;
  background-color: #ffffff;
}

/* Call to Action Section */
.page-resources-789-club-registration-process__call-to-action {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 80px 0;
}

.page-resources-789-club-registration-process__call-to-action .page-resources-789-club-registration-process__section-title {
  color: #ffffff;
}

.page-resources-789-club-registration-process__call-to-action .page-resources-789-club-registration-process__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-789-club-registration-process__call-to-action .page-resources-789-club-registration-process__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

/* Global image rules for content area - minimum size 200x200px */
.page-resources-789-club-registration-process img {
  min-width: 200px;
  min-height: 200px;
  max-width: 100%; /* Default responsive for desktop */
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-789-club-registration-process__hero-title {
    font-size: 3em;
  }
  .page-resources-789-club-registration-process__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-789-club-registration-process {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-789-club-registration-process__container {
    padding: 0 15px !important;
  }

  .page-resources-789-club-registration-process__section {
    padding: 40px 0;
  }

  .page-resources-789-club-registration-process__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure content is below header on mobile */
  }

  .page-resources-789-club-registration-process__hero-title {
    font-size: 2.2em;
  }

  .page-resources-789-club-registration-process__hero-description {
    font-size: 1em;
  }

  .page-resources-789-club-registration-process__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-789-club-registration-process__btn-primary,
  .page-resources-789-club-registration-process__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-789-club-registration-process__features-grid,
  .page-resources-789-club-registration-process__steps-grid,
  .page-resources-789-club-registration-process__notes-list,
  .page-resources-789-club-registration-process__troubleshooting-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-789-club-registration-process__feature-card,
  .page-resources-789-club-registration-process__step-card,
  .page-resources-789-club-registration-process__notes-list li,
  .page-resources-789-club-registration-process__trouble-card {
    padding: 20px;
  }

  .page-resources-789-club-registration-process__feature-icon,
  .page-resources-789-club-registration-process__step-image,
  .page-resources-789-club-registration-process img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all image containers are responsive */
  .page-resources-789-club-registration-process__feature-card,
  .page-resources-789-club-registration-process__step-card,
  .page-resources-789-club-registration-process__trouble-card,
  .page-resources-789-club-registration-process__hero-section,
  .page-resources-789-club-registration-process__section,
  .page-resources-789-club-registration-process__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-resources-789-club-registration-process__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-resources-789-club-registration-process__faq-answer {
    padding: 15px 20px;
  }

  .page-resources-789-club-registration-process__step-number {
    left: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-789-club-registration-process__hero-title {
    font-size: 1.8em;
  }
  .page-resources-789-club-registration-process__section-title {
    font-size: 1.8em;
  }
}