/* style/resources-13win-20-platform-advantages.css */

/* --- Base Styles --- */
.page-resources-13win-20-platform-advantages {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Main content background will be handled by sections */
}

/* Fixed header offset for desktop */
.page-resources-13win-20-platform-advantages__hero-section {
  padding-top: var(--header-offset, 120px);
}

/* Ensure main sections have proper padding and max-width */
.page-resources-13win-20-platform-advantages__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* --- Section Styling --- */
.page-resources-13win-20-platform-advantages__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #1a1a2e; /* Dark background for hero */
  color: #ffffff;
  padding-bottom: 60px;
  overflow: hidden;
  min-height: 70vh;
}

.page-resources-13win-20-platform-advantages__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-resources-13win-20-platform-advantages__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-13win-20-platform-advantages__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-13win-20-platform-advantages__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-13win-20-platform-advantages__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-resources-13win-20-platform-advantages__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  transition: transform 0.3s ease-in-out;
}

.page-resources-13win-20-platform-advantages__hero-image:hover {
  transform: scale(1.05);
}

.page-resources-13win-20-platform-advantages__intro-video-section {
  background-color: #1a1a2e;
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-resources-13win-20-platform-advantages__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #26A9E0;
  text-align: center;
}

.page-resources-13win-20-platform-advantages__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-13win-20-platform-advantages__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 20px auto;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-13win-20-platform-advantages__video {
  width: 100%;
  height: auto;
  display: block;
}

.page-resources-13win-20-platform-advantages__video-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

.page-resources-13win-20-platform-advantages__video-caption {
  font-style: italic;
  color: #aaa;
  margin-top: 10px;
}

.page-resources-13win-20-platform-advantages__content-section {
  padding: 80px 0;
}

.page-resources-13win-20-platform-advantages__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-resources-13win-20-platform-advantages__text-block {
  font-size: 1.1em;
  margin-bottom: 40px;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-13win-20-platform-advantages__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-13win-20-platform-advantages__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #ffffff;
}

.page-resources-13win-20-platform-advantages__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-13win-20-platform-advantages__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-13win-20-platform-advantages__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-resources-13win-20-platform-advantages__feature-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-resources-13win-20-platform-advantages__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-resources-13win-20-platform-advantages__advantage-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: #333333;
}

.page-resources-13win-20-platform-advantages__advantage-item:hover {
  transform: translateY(-10px);
}

.page-resources-13win-20-platform-advantages__advantage-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-13win-20-platform-advantages__advantage-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-13win-20-platform-advantages__advantage-description {
  font-size: 1em;
  margin-bottom: 20px;
  color: #555555;
}

.page-resources-13win-20-platform-advantages__advantage-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #555555;
}

.page-resources-13win-20-platform-advantages__advantage-list li {
  margin-bottom: 8px;
}

.page-resources-13win-20-platform-advantages__advantage-list li a {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-13win-20-platform-advantages__advantage-list li a:hover {
  text-decoration: underline;
}

.page-resources-13win-20-platform-advantages__info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-13win-20-platform-advantages__info-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
  text-align: center;
}

.page-resources-13win-20-platform-advantages__info-card:hover {
  transform: translateY(-10px);
}

.page-resources-13win-20-platform-advantages__info-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-resources-13win-20-platform-advantages__info-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-13win-20-platform-advantages__info-description {
  font-size: 1em;
  color: #e0e0e0;
}