/* style/resources-cwin-login-guide.css */

/* Base styles for the page content */
.page-resources-cwin-login-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: var(--background-color, #1a1a2e); /* Ensure body background is respected */
}

/* Fixed header offset to prevent content being hidden */
.page-resources-cwin-login-guide__hero-section {
  padding-top: var(--header-offset, 120px);
}

/* Hero Section */
.page-resources-cwin-login-guide__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #FFFFFF;
  background-color: #017439; /* Fallback if image not loaded, or for overlay */
}

.page-resources-cwin-login-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-cwin-login-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-resources-cwin-login-guide__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-resources-cwin-login-guide__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFF00; /* Register/Login font color for prominence */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-cwin-login-guide__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-resources-cwin-login-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  max-width: 100%;
  box-sizing: border-box;
}

/* General Section Styles */
.page-resources-cwin-login-guide__section {
  padding: 60px 20px;
  text-align: center;
}

.page-resources-cwin-login-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF; /* White background for content areas */
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 40px;
}

.page-resources-cwin-login-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #017439; /* Main brand color for titles */
}

.page-resources-cwin-login-guide__section-title--white {
  color: #FFFFFF;
}

.page-resources-cwin-login-guide__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #017439;
}

.page-resources-cwin-login-guide__sub-title--white {
  color: #FFFFFF;
}

.page-resources-cwin-login-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: left;
  color: #333333;
}

.page-resources-cwin-login-guide__paragraph--white {
  color: #FFFFFF;
}