/* style/resources-sv368-app-features-introduction.css */
.page-resources-sv368-app-features-introduction {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from shared.css, ensures contrast */
}

.page-resources-sv368-app-features-introduction__hero-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  overflow: hidden;
  background-color: #017439;
  color: #ffffff;
}

.page-resources-sv368-app-features-introduction__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-resources-sv368-app-features-introduction__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-sv368-app-features-introduction__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-sv368-app-features-introduction__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-sv368-app-features-introduction__btn-primary,
.page-resources-sv368-app-features-introduction__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-resources-sv368-app-features-introduction__btn-primary {
  background-color: #C30808; /* Custom color for register/login */
  color: #FFFF00; /* Custom font color for register/login */
  border: 2px solid #C30808;
}

.page-resources-sv368-app-features-introduction__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-resources-sv368-app-features-introduction__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-sv368-app-features-introduction__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

.page-resources-sv368-app-features-introduction__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.2;
  z-index: 0;
}

.page-resources-sv368-app-features-introduction__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-resources-sv368-app-features-introduction__content-section {
  padding: 60px 20px;
}