
    /* Base styles for the page */
    .page-www-774pub-com-login-register {
      font-family: 'Arial', sans-serif;
      color: #212529; /* Dark text for good contrast */
      line-height: 1.6;
      background-color: #f8f9fa; /* Light background */
      padding-bottom: 40px;
    }

    .page-www-774pub-com-login-register__section-title {
      font-size: 2.5rem;
      color: #003366; /* Dark blue for titles */
      text-align: center;
      margin-bottom: 40px;
      padding-top: 20px;
      font-weight: 700;
    }

    .page-www-774pub-com-login-register__hero-section,
    .page-www-774pub-com-login-register__security-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px; /* Small padding-top as shared.css handles body padding */
      max-width: 1200px;
      margin: 0 auto;
      gap: 30px;
      text-align: center;
    }

    .page-www-774pub-com-login-register__hero-section {
      padding-top: 10px; /* Small padding-top to decorate, assuming body padding from shared.css */
    }

    .page-www-774pub-com-login-register__hero-content,
    .page-www-774pub-com-login-register__security-content {
      flex: 1;
      min-width: 300px;
    }

    .page-www-774pub-com-login-register__hero-title {
      font-size: 3.5rem;
      color: #003366;
      margin-bottom: 20px;
      font-weight: 800;
    }

    .page-www-774pub-com-login-register__hero-description {
      font-size: 1.3rem;
      color: #343a40;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-www-774pub-com-login-register__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .page-www-774pub-com-login-register__button {
      padding: 15px 30px;
      font-size: 1.1rem;
      font-weight: bold;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-decoration: none; /* Ensure no underline if it were an <a>, but it's a <button> */
      display: inline-block;
      text-align: center;
      white-space: nowrap;
    }

    .page-www-774pub-com-login-register__button--primary {
      background-color: #007bff; /* Vibrant blue */
      color: #ffffff;
    }

    .page-www-774pub-com-login-register__button--primary:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-www-774pub-com-login-register__button--secondary {
      background-color: #6c757d; /* Grey */
      color: #ffffff;
    }

    .page-www-774pub-com-login-register__button--secondary:hover {
      background-color: #5a6268;
      transform: translateY(-2px);
    }

    .page-www-774pub-com-login-register__hero-image-wrapper,
    .page-www-774pub-com-login-register__security-image-wrapper {
      flex: 1;
      min-width: 300px;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-www-774pub-com-login-register__hero-image,
    .page-www-774pub-com-login-register__security-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
    }

    .page-www-774pub-com-login-register__benefits-section,
    .page-www-774pub-com-login-register__how-to-section,
    .page-www-774pub-com-login-register__faq-section,
    .page-www-774pub-com-login-register__cta-bottom-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-www-774pub-com-login-register__benefits-grid,
    .page-www-774pub-com-login-register__steps-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-content: center;
    }

    .page-www-774pub-com-login-register__benefit-card,
    .page-www-774pub-com-login-register__step-card {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-www-774pub-com-login-register__benefit-card:hover,
    .page-www-774pub-com-login-register__step-card:hover {
      transform: translateY(-5px);
    }

    .page-www-774pub-com-login-register__benefit-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .page-www-774pub-com-login-register__benefit-title,
    .page-www-774pub-com-login-register__step-title {
      font-size: 1.5rem;
      color: #003366;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-www-774pub-com-login-register__benefit-description,
    .page-www-774pub-com-login-register__step-description {
      font-size: 1rem;
      color: #495057;
    }

    .page-www-774pub-com-login-register__step-number {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #007bff;
      color: #ffffff;
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 20px;
      box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
    }

    .page-www-774pub-com-login-register__security-section {
      background-color: #e9f5ff; /* Light blue background */
      border-radius: 15px;
      padding: 60px;
      margin-top: 60px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      flex-direction: row; /* Default to row for larger screens */
      text-align: left;
    }

    .page-www-774pub-com-login-register__security-section .page-www-774pub-com-login-register__section-title {
      text-align: left;
      margin-bottom: 20px;
      padding-top: 0;
    }

    .page-www-774pub-com-login-register__security-description {
      font-size: 1.1rem;
      color: #343a40;
      margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-www-774pub-com-login-register__faq-section {
      background-color: #ffffff;
      border-top: 1px solid #dee2e6;
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .page-www-774pub-com-login-register__faq-container {
      max-width: 900px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

    .page-www-774pub-com-login-register__faq-item {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #fefefe;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-www-774pub-com-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #f1f3f5; /* Light grey for question background */
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      color: #003366;
    }

    .page-www-774pub-com-login-register__faq-question:hover {
      background-color: #e9ecef;
    }

    .page-www-774pub-com-login-register__faq-title {
      font-size: 1.25rem;
      margin: 0;
      font-weight: 600;
      color: #003366; /* Dark blue for question title */
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-www-774pub-com-login-register__faq-toggle {
      font-size: 1.8rem;
      font-weight: bold;
      color: #007bff; /* Blue for toggle icon */
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click on parent div */
      line-height: 1; /* Adjust line-height for better centering */
    }

    .page-www-774pub-com-login-register__faq-item.active .page-www-774pub-com-login-register__faq-toggle {
      transform: rotate(45deg); /* Rotate for 'x' or '-' effect */
    }

    .page-www-774pub-com-login-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #495057;
      font-size: 1.05rem;
    }

    .page-www-774pub-com-login-register__faq-item.active .page-www-774pub-com-login-register__faq-answer {
      max-height: 2000px !important; /* Sufficiently large height */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-www-774pub-com-login-register__faq-answer p {
      margin: 0;
    }

    .page-www-774pub-com-login-register__cta-bottom-section {
      background-color: #003366; /* Dark blue background */
      color: #ffffff;
      padding: 80px 20px;
      border-radius: 15px;
      margin-top: 60px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .page-www-774pub-com-login-register__cta-bottom-section .page-www-774pub-com-login-register__section-title {
      color: #ffffff;
    }

    .page-www-774pub-com-login-register__cta-description {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto 30px auto;
      color: #e9ecef;
    }

    .page-www-774pub-com-login-register__promotion-text {
      font-size: 1rem;
      margin-top: 30px;
      color: #ffc107; /* Yellow for promotion text */
      font-weight: bold;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .page-www-774pub-com-login-register__hero-title {
        font-size: 3rem;
      }
      .page-www-774pub-com-login-register__section-title {
        font-size: 2rem;
      }
      .page-www-774pub-com-login-register__security-section {
        flex-direction: column;
        padding: 40px;
        text-align: center;
      }
      .page-www-774pub-com-login-register__security-section .page-www-774pub-com-login-register__section-title {
        text-align: center;
      }
    }

    @media (max-width: 768px) {
      .page-www-774pub-com-login-register__hero-section {
        flex-direction: column;
        padding: 15px;
        gap: 20px;
      }
      .page-www-774pub-com-login-register__hero-title {
        font-size: 2.5rem;
      }
      .page-www-774pub-com-login-register__hero-description {
        font-size: 1.1rem;
      }
      .page-www-774pub-com-login-register__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
      }
      .page-www-774pub-com-login-register__benefits-section,
      .page-www-774pub-com-login-register__how-to-section,
      .page-www-774pub-com-login-register__faq-section,
      .page-www-774pub-com-login-register__cta-bottom-section {
        padding: 40px 15px;
      }

      /* List item mobile responsiveness */
      .page-www-774pub-com-login-register__benefits-grid,
      .page-www-774pub-com-login-register__steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-www-774pub-com-login-register__benefit-card,
      .page-www-774pub-com-login-register__step-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsiveness */
      .page-www-774pub-com-login-register__hero-image-wrapper,
      .page-www-774pub-com-login-register__security-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-www-774pub-com-login-register__hero-image,
      .page-www-774pub-com-login-register__security-image {
        max-width: 100% !important;
        height: auto !important;
      }

      /* FAQ mobile adjustments */
      .page-www-774pub-com-login-register__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-www-774pub-com-login-register__faq-question {
        padding: 15px 20px;
      }
      .page-www-774pub-com-login-register__faq-title {
        font-size: 1.1rem;
      }
      .page-www-774pub-com-login-register__faq-toggle {
        font-size: 1.5rem;
      }
      .page-www-774pub-com-login-register__faq-answer {
        padding: 0 20px;
        font-size: 1rem;
      }
      .page-www-774pub-com-login-register__faq-item.active .page-www-774pub-com-login-register__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-www-774pub-com-login-register__hero-title {
        font-size: 2rem;
      }
      .page-www-774pub-com-login-register__hero-description {
        font-size: 1rem;
      }
      .page-www-774pub-com-login-register__button {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
      }
      .page-www-774pub-com-login-register__cta-buttons {
        flex-direction: column;
        gap: 10px;
      }
      .page-www-774pub-com-login-register__section-title {
        font-size: 1.6rem;
      }
      .page-www-774pub-com-login-register__security-section {
        padding: 30px 15px;
      }
    }
  