.page-original {
  color: #333333; /* Dark text for default light body background */
}

.page-original__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.page-original__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
  padding: 40px 20px;
}

.page-original__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-original__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-original__hero-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
}

.page-original__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-original__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-original__button {
  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, transform 0.3s ease;
}

.page-original__button--primary {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-original__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-original__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-original__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-original__button--text {
  background-color: transparent;
  color: #003366; /* Dark blue */
  border: none;
  padding: 10px 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-original__button--text:hover {
  color: #FFD700;
}

.page-original__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-original__section-title {
  font-size: 2.5em;
  color: #003366; /* Dark blue */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-original__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

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

.page-original__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-original__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
}

.page-original__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-original__feature-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-original__feature-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-original__advantage-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.page-original__advantage-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-original__advantage-text {
  flex: 1;
}

.page-original__advantage-text p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444444;
}

.page-original__advantage-image {
  flex: 1;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.1);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-original__cta-section {
  background-color: #003366; /* Dark blue background */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-original__cta-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
}

.page-original__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-original__hero-title {
    font-size: 2.8em;
  }

  .page-original__hero-description {
    font-size: 1.1em;
  }

  .page-original__section-title {
    font-size: 2em;
  }

  .page-original__feature-title {
    font-size: 1.5em;
  }

  .page-original__advantage-content {
    flex-direction: column;
  }

  .page-original__advantage-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-original__hero-container {
    min-height: 450px;
  }

  .page-original__hero-title {
    font-size: 2.2em;
  }

  .page-original__hero-description {
    font-size: 1em;
  }

  .page-original__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-original__button {
    width: 100%;
    max-width: 300px;
  }

  .page-original__section-title {
    font-size: 1.8em;
  }

  .page-original__feature-card {
    padding: 20px;
  }

  .page-original__feature-image {
    height: 200px;
    min-width: 200px;
    min-height: 200px;
  }

  .page-original__advantage-image {
    max-width: 100%;
  }

  .page-original__cta-title {
    font-size: 2em;
  }

  /* Mobile image scaling */
  .page-original img {
    max-width: 100%;
    height: auto;
  }
  .page-original__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-original__feature-image {
    max-width: 100%;
    height: auto;
  }
  .page-original__advantage-image {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-original__hero-description {
    font-size: 0.9em;
  }

  .page-original__section-title {
    font-size: 1.5em;
  }

  .page-original__cta-title {
    font-size: 1.8em;
  }
}