.page-resources-getting-started-guide {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light body background */
  background-color: #FFFFFF; /* Default background for main content sections */
  line-height: 1.6;
}

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

/* Hero Section */
.page-resources-getting-started-guide__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 100px 20px 60px; /* Adjust padding-top to account for fixed header */
  background-color: #f0f8ff; /* Light blue tint for hero background */
  color: #333333;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Apply header offset here */
}

.page-resources-getting-started-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Make background image subtle */
}

.page-resources-getting-started-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-resources-getting-started-guide__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #26A9E0;
  line-height: 1.2;
}

.page-resources-getting-started-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555555;
}

.page-resources-getting-started-guide__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Video Section */
.page-resources-getting-started-guide__video-section {
    padding: 60px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.page-resources-getting-started-guide__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px; /* Max width for video */
    margin: 30px auto 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

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


/* Section Titles & Descriptions */
.page-resources-getting-started-guide__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
}

.page-resources-getting-started-guide__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* Content Blocks */
.page-resources-getting-started-guide__overview-section,
.page-resources-getting-started-guide__deposit-section,
.page-resources-getting-started-guide__strategy-section,
.page-resources-getting-started-guide__contact-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-resources-getting-started-guide__content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-resources-getting-started-guide__content-block:nth-child(even) {
  flex-direction: row-reverse;
}

.page-resources-getting-started-guide__image-left,
.page-resources-getting-started-guide__image-right {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-getting-started-guide__text-content {
  flex: 1;
  max-width: 50%;
  font-size: 1.1em;
  color: #333333;
}

.page-resources-getting-started-guide__text-content p {
  margin-bottom: 15px;
}