/* style/resources-789wim-registration-guide.css */

/* Base styles for the page content */
.page-resources-789wim-registration-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: var(--primary-color, #0A1931); /* Inherit from shared or use default dark blue */
}

/* Ensure content is within a readable width */
.page-resources-789wim-registration-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Section titles */
.page-resources-789wim-registration-guide__section-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700; /* Use accent color for main titles */
  line-height: 1.2;
}

/* Section descriptions */
.page-resources-789wim-registration-guide__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #f0f0f0; /* Light text for dark sections */
}

/* Buttons - Primary */
.page-resources-789wim-registration-guide__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Accent color */
  color: #0A1931; /* Dark text for accent background */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-789wim-registration-guide__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Buttons - Secondary */
.page-resources-789wim-registration-guide__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFD700; /* Accent color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-789wim-registration-guide__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
}

/* Buttons - Tertiary (for steps) */
.page-resources-789wim-registration-guide__btn-tertiary {
  display: inline-block;
  background-color: #0A1931; /* Primary color */
  color: #FFD700; /* Accent color */
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 1px solid #FFD700;
  cursor: pointer;
  margin-top: 20px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-789wim-registration-guide__btn-tertiary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
}

/* Text links */
.page-resources-789wim-registration-guide__text-link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-resources-789wim-registration-guide__text-link:hover {
  color: #e6c200;
}

/* Background colors for contrast */
.page-resources-789wim-registration-guide__dark-bg {
  background-color: #0A1931;
  color: #f0f0f0;
}

.page-resources-789wim-registration-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-789wim-registration-guide__light-bg .page-resources-789wim-registration-guide__section-title {
  color: #0A1931; /* Dark title for light background */
}

.page-resources-789wim-registration-guide__light-bg .page-resources-789wim-registration-guide__section-description {
  color: #555555; /* Darker text for light background */
}

/* Hero Section */
.page-resources-789wim-registration-guide__hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%); /* Dark gradient for hero */
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
}

.page-resources-789wim-registration-guide__hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-789wim-registration-guide__hero-content {
  flex: 1;
  max-width: 50%;
  text-align: left;
}

.page-resources-789wim-registration-guide__hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFD700; /* Accent for title */
  line-height: 1.2;
}

.page-resources-789wim-registration-guide__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-789wim-registration-guide__hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-789wim-registration-guide__hero-image-wrapper {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-789wim-registration-guide__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Benefits Section */
.page-resources-789wim-registration-guide__benefits-section {
  padding: 60px 0;
  background-color: #0A1931;
  color: #f0f0f0;
}

.page-resources-789wim-registration-guide__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-789wim-registration-guide__benefit-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-resources-789wim-registration-guide__benefit-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-789wim-registration-guide__benefit-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}