
    /* CSS for page-3wpn */
.page-3wpn {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1a1a1a; /* Dark background */
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-3wpn__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
  box-sizing: border-box;
}

.page-3wpn__section-title {
  font-size: 2.5em;
  color: #ffd700; /* Gold accent color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-3wpn__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #ffd700;
}

.page-3wpn__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-3wpn__hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* Responsive height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small decorative top padding, assuming body handles main offset */
  min-height: 400px; /* Ensure minimum height on desktop */
}

.page-3wpn__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5); /* Darken background image for text readability */
  max-width: 100%; /* Responsive image */
}

.page-3wpn__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 20px;
  max-width: 800px;
}

.page-3wpn__main-title {
  font-size: 3em;
  margin-bottom: 15px;
  color: #ffd700;
  line-height: 1.2;
}

.page-3wpn__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-3wpn__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-3wpn__button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  white-space: nowrap; /* Prevent text wrapping inside button */
  box-sizing: border-box; /* Crucial for responsive buttons */
}

.page-3wpn__button--primary {
  background-color: #ffd700;
  color: #1a1a1a;
}

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

.page-3wpn__button--secondary {
  background-color: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
}

.page-3wpn__button--secondary:hover {
  background-color: #ffd700;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.page-3wpn__button--link {
  background-color: #007bff; /* Example color for promo links */
  color: #ffffff;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1em;
  text-decoration: none;
}

.page-3wpn__button--link:hover {
  background-color: #0056b3;
}

/* About Section */
.page-3wpn__about-section {
  padding: 60px 0;
  background-color: #222222;
}

/* Product Showcase */
.page-3wpn__product-showcase {
  padding: 60px 0;
}

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

.page-3wpn__product-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-3wpn__product-card:hover {
  transform: translateY(-5px);
}

.page-3wpn__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  max-width: 100%; /* Responsive image */
}

.page-3wpn__product-title {
  font-size: 1.5em;
  color: #ffd700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-3wpn__product-description {
  font-size: 1em;
  color: #cccccc;
  padding: 0 15px;
  margin-bottom: 15px;
}

.page-3wpn__center-text {
  text-align: center;
  margin-top: 40px;
}

/* Promo Section */
.page-3wpn__promo-section {
  padding: 60px 0;
  background-color: #222222;
}

.page-3wpn__promo-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-3wpn__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%; /* Responsive image */
}

.page-3wpn__promo-title {
  font-size: 1.8em;
  color: #ffd700;
  margin-bottom: 10px;
}

.page-3wpn__promo-description {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 20px;
  max-width: 600px;
}

/* Features Section */
.page-3wpn__features-section {
  padding: 60px 0;
}

.page-3wpn__features-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-3wpn__features-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  box-sizing: border-box; /* Crucial for responsive lists */
}

.page-3wpn__features-title {
  font-size: 1.6em;
  color: #ffd700;
  margin-bottom: 15px;
}

.page-3wpn__features-description {
  font-size: 1em;
  color: #cccccc;
}

/* FAQ Section */
.page-3wpn__faq-section {
  padding: 60px 0;
  background-color: #222222;
}

.page-3wpn__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-3wpn__faq-item {
  background-color: #2a2a2a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-3wpn__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  background-color: #333333;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.page-3wpn__faq-question:hover {
  background-color: #444444;
}

.page-3wpn__faq-q-text {
  font-size: 1.2em;
  color: #ffffff;
  margin: 0;
  flex-grow: 1;
  text-align: left;
  pointer-events: none; /* Prevent h3 from blocking click on parent div */
}

.page-3wpn__faq-toggle {
  font-size: 1.8em;
  color: #ffd700;
  font-weight: bold;
  margin-left: 15px;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent span from blocking click on parent div */
}

.page-3wpn__faq-item.active .page-3wpn__faq-toggle {
  transform: rotate(45deg); /* Change + to X (or rotate to -) */
}

.page-3wpn__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px; /* Initial padding */
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  box-sizing: border-box;
}

.page-3wpn__faq-item.active .page-3wpn__faq-answer {
  max-height: 2000px !important; /* Sufficiently large value */
  padding: 20px 25px !important; /* Expanded padding */
  opacity: 1;
}

.page-3wpn__faq-a-text {
  font-size: 1em;
  color: #cccccc;
  margin: 0;
}

/* Floating Buttons */
.page-3wpn__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-3wpn__floating-button {
  display: block;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.page-3wpn__floating-button--register {
  background-color: #28a745; /* Green for register */
  color: #ffffff;
}

.page-3wpn__floating-button--register:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

.page-3wpn__floating-button--login {
  background-color: #007bff; /* Blue for login */
  color: #ffffff;
}

.page-3wpn__floating-button--login:hover {
  background-color: #0069d9;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-3wpn__main-title {
    font-size: 2.5em;
  }
  .page-3wpn__subtitle {
    font-size: 1.1em;
  }
  .page-3wpn__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-3wpn__hero-section {
    height: 50vh;
    min-height: 300px;
  }
  .page-3wpn__main-title {
    font-size: 2em;
  }
  .page-3wpn__subtitle {
    font-size: 1em;
  }
  .page-3wpn__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-3wpn__button {
    width: 80%; /* Make buttons wider on mobile */
    max-width: 300px; /* Limit max width */
    margin: 0 auto; /* Center buttons */
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-3wpn__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-3wpn__text-content {
    font-size: 0.95em;
  }

  /* List items responsive */
  .page-3wpn__features-list,
  .page-3wpn__product-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 20px;
    padding: 0 10px !important; /* Adjust container padding */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-3wpn__features-item,
  .page-3wpn__product-card,
  .page-3wpn__promo-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 20px 15px !important; /* Adjust padding for items */
    margin-left: 0 !important;
    margin-right: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-3wpn__product-image,
  .page-3wpn__promo-image {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-3wpn__faq-question {
    padding: 15px 20px;
  }
  .page-3wpn__faq-q-text {
    font-size: 1.1em;
  }
  .page-3wpn__faq-toggle {
    font-size: 1.5em;
  }
  .page-3wpn__faq-answer {
    padding: 0 20px;
  }
  .page-3wpn__faq-item.active .page-3wpn__faq-answer {
    padding: 15px 20px !important;
  }

  .page-3wpn__floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }
  .page-3wpn__floating-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-3wpn__main-title {
    font-size: 1.8em;
  }
  .page-3wpn__subtitle {
    font-size: 0.9em;
  }
  .page-3wpn__section-title {
    font-size: 1.6em;
  }
  .page-3wpn__button {
    width: 90%;
    max-width: 250px;
  }
  .page-3wpn__hero-section {
    min-height: 250px;
  }
}
  