/* style/resources-kube3933-getting-started.css */
.page-resources-kube3933-getting-started {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: var(--background-color, #f5f5f5);
}

.page-resources-kube3933-getting-started__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-kube3933-getting-started__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 550px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-resources-kube3933-getting-started__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-kube3933-getting-started__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-kube3933-getting-started__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-resources-kube3933-getting-started__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-resources-kube3933-getting-started__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.page-resources-kube3933-getting-started__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-resources-kube3933-getting-started__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-kube3933-getting-started__btn-primary {
  display: inline-block;
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-kube3933-getting-started__btn-primary:hover {
  background-color: #d16b06;
}

.page-resources-kube3933-getting-started__video-section {
  padding: 60px 0;
  text-align: center;
  background-color: #f8f8f8;
}

.page-resources-kube3933-getting-started__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 960px;
  margin: 30px auto 0;
  background-color: #000;
  border-radius: 8px;
}

.page-resources-kube3933-getting-started__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-resources-kube3933-getting-started__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.page-resources-kube3933-getting-started__content-area {
  padding: 60px 0;
}

.page-resources-kube3933-getting-started__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-kube3933-getting-started__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-kube3933-getting-started p {
  margin-bottom: 1.5em;
  font-size: 1.05em;
}

.page-resources-kube3933-getting-started__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-kube3933-getting-started__step-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-resources-kube3933-getting-started__step-item:hover {
  transform: translateY(-5px);
}

.page-resources-kube3933-getting-started__step-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-kube3933-getting-started__subsection-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-resources-kube3933-getting-started__list {
  list-style: disc inside;
  margin-bottom: 1.5em;
  padding-left: 20px;
}

.page-resources-kube3933-getting-started__list li {
  margin-bottom: 0.8em;
  font-size: 1.05em;
}

.page-resources-kube3933-getting-started__list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}

.page-resources-kube3933-getting-started__list-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.page-resources-kube3933-getting-started__list-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-kube3933-getting-started__image-container {
  text-align: center;
  margin: 40px auto;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-kube3933-getting-started__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.page-resources-kube3933-getting-started__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-resources-kube3933-getting-started__faq-list {
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.page-resources-kube3933-getting-started__faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.page-resources-kube3933-getting-started__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.page-resources-kube3933-getting-started__faq-question:hover {
  color: #26A9E0;
}

.page-resources-kube3933-getting-started__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-kube3933-getting-started__faq-item.active .page-resources-kube3933-getting-started__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-kube3933-getting-started__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-resources-kube3933-getting-started__faq-item.active .page-resources-kube3933-getting-started__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px !important;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-kube3933-getting-started__hero-title {
    font-size: 2.8em;
  }
}

@media (max-width: 768px) {
  .page-resources-kube3933-getting-started {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-kube3933-getting-started__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-kube3933-getting-started__hero-title {
    font-size: 2.2em;
  }

  .page-resources-kube3933-getting-started__hero-description {
    font-size: 1em;
  }

  .page-resources-kube3933-getting-started__btn-primary {
    padding: 12px 25px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-kube3933-getting-started__cta-wrapper {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .page-resources-kube3933-getting-started__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-resources-kube3933-getting-started__subsection-title {
    font-size: 1.5em;
    margin-top: 30px;
  }

  .page-resources-kube3933-getting-started__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-kube3933-getting-started__list-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-kube3933-getting-started__video-section,
  .page-resources-kube3933-getting-started__content-area {
    padding: 40px 0;
  }

  .page-resources-kube3933-getting-started__container {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .page-resources-kube3933-getting-started img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-kube3933-getting-started__image-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding: 0 15px;
  }

  .page-resources-kube3933-getting-started video,
  .page-resources-kube3933-getting-started__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-kube3933-getting-started__video-section,
  .page-resources-kube3933-getting-started__video-container,
  .page-resources-kube3933-getting-started__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-resources-kube3933-getting-started__hero-title {
    font-size: 1.8em;
  }

  .page-resources-kube3933-getting-started__section-title {
    font-size: 1.8em;
  }

  .page-resources-kube3933-getting-started__faq-question {
    font-size: 1.1em;
  }
}