/* style/resources-crazywin-platform-advantages.css */
.page-resources-crazywin-platform-advantages {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #FFFFFF;
}

@media (max-width: 768px) {
  .page-resources-crazywin-platform-advantages {
    padding-top: var(--header-offset, 80px);
  }
}

.page-resources-crazywin-platform-advantages__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px 60px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-resources-crazywin-platform-advantages__hero-content {
  max-width: 900px;
  margin-bottom: 30px;
  z-index: 1;
}

.page-resources-crazywin-platform-advantages__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-crazywin-platform-advantages__intro-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

.page-resources-crazywin-platform-advantages__hero-image {
  width: 100%;
  max-width: 1920px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-resources-crazywin-platform-advantages__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.8); /* Slight darkening for text contrast */
}

.page-resources-crazywin-platform-advantages__content-area {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-top: -40px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 2;
}

.page-resources-crazywin-platform-advantages__article-header {
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.page-resources-crazywin-platform-advantages__back-link {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-crazywin-platform-advantages__back-link:hover {
  color: #FCBC45;
}

.page-resources-crazywin-platform-advantages__article-content h2 {
  font-size: 2.2em;
  color: #000000;
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources-crazywin-platform-advantages__article-content h3 {
  font-size: 1.6em;
  color: #000000;
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-resources-crazywin-platform-advantages__article-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333333;
}

.page-resources-crazywin-platform-advantages__article-content strong {
  color: #000000;
}

.page-resources-crazywin-platform-advantages__image-inline {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-crazywin-platform-advantages__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-crazywin-platform-advantages__feature-list li {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  padding: 15px 20px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.page-resources-crazywin-platform-advantages__feature-list li:hover {
  transform: translateX(5px);
}

.page-resources-crazywin-platform-advantages__feature-list li strong {
  color: #000000;
}

.page-resources-crazywin-platform-advantages__inline-link {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-crazywin-platform-advantages__inline-link:hover {
  color: #FCBC45;
}

.page-resources-crazywin-platform-advantages__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  cursor: pointer;
}

.page-resources-crazywin-platform-advantages__button--primary {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-crazywin-platform-advantages__button--primary:hover {
  background-color: #FFD700;
  transform: translateY(-2px);
}

.page-resources-crazywin-platform-advantages__button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-left: 15px;
}

.page-resources-crazywin-platform-advantages__button--secondary:hover {
  background-color: #333333;
  border-color: #333333;
  transform: translateY(-2px);
}

.page-resources-crazywin-platform-advantages__button--tertiary {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
  margin-left: 15px;
}

.page-resources-crazywin-platform-advantages__button--tertiary:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-crazywin-platform-advantages__hero-section {
    padding: 30px 15px 40px;
  }

  .page-resources-crazywin-platform-advantages__main-title {
    font-size: 2.2em;
  }

  .page-resources-crazywin-platform-advantages__intro-text {
    font-size: 1em;
  }

  .page-resources-crazywin-platform-advantages__content-area {
    padding: 30px 15px;
    margin-top: -20px;
  }

  .page-resources-crazywin-platform-advantages__article-content h2 {
    font-size: 1.8em;
    margin-top: 40px;
  }

  .page-resources-crazywin-platform-advantages__article-content h3 {
    font-size: 1.4em;
  }

  .page-resources-crazywin-platform-advantages__article-content p {
    font-size: 1em;
  }

  .page-resources-crazywin-platform-advantages__button {
    padding: 12px 25px;
    font-size: 1em;
    margin-top: 15px;
    margin-left: 0;
    display: block;
    width: 100%;
  }

  .page-resources-crazywin-platform-advantages__button--secondary,
  .page-resources-crazywin-platform-advantages__button--tertiary {
    margin-top: 10px;
    margin-left: 0;
  }

  .page-resources-crazywin-platform-advantages__image-inline {
    max-width: 100%;
    height: auto;
  }
}