/* style/resources-how-to-get-started.css */
.page-resources-how-to-get-started {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-resources-how-to-get-started__hero-section {
  position: relative;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  background: linear-gradient(135deg, #26A9E0 0%, #1a1a2e 100%); /* Blend brand color with body background */
  color: #ffffff;
  overflow: hidden;
}

.page-resources-how-to-get-started__hero-content {
  max-width: 900px;
  z-index: 10;
  margin-bottom: 30px;
}

.page-resources-how-to-get-started__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-how-to-get-started__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-how-to-get-started__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-how-to-get-started__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-resources-how-to-get-started__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: brightness(0.8); /* Allowed for background image to ensure text contrast */
}

.page-resources-how-to-get-started__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-how-to-get-started__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-resources-how-to-get-started__content-area,
.page-resources-how-to-get-started__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-resources-how-to-get-started__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-how-to-get-started__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-resources-how-to-get-started__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-how-to-get-started__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-get-started__card {
  background: rgba(255, 255, 255, 0.1); /* For dark sections */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-how-to-get-started__card.page-resources-how-to-get-started__light-bg {
  background: #ffffff;
  color: #333333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-get-started__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-get-started__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-how-to-get-started__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1em;
}

.page-resources-how-to-get-started__list li {
  margin-bottom: 8px;
}

.page-resources-how-to-get-started__btn-primary,
.page-resources-how-to-get-started__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-resources-how-to-get-started__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}