
    /* General Styling for page-8k8-3 */
    .page-8k8-3 {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f8f8f8;
        padding-top: 10px; /* Small padding for visual separation from header */
    }

    .page-8k8-3__section-title {
        text-align: center;
        color: #0056b3; /* A strong blue for titles */
        margin-bottom: 40px;
        font-size: 2.5em;
        padding: 0 15px;
        word-wrap: break-word; /* Ensure long titles break */
        overflow-wrap: break-word;
    }

    .page-8k8-3__button {
        background-color: #007bff; /* Primary button color */
        color: #fff;
        padding: 12px 25px;
        border: none;
        border-radius: 5px;
        font-size: 1.1em;
        cursor: pointer;
        transition: background-color 0.3s ease;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-3__button:hover {
        background-color: #0056b3;
    }

    .page-8k8-3__button--secondary {
        background-color: #6c757d; /* Secondary button color */
    }

    .page-8k8-3__button--secondary:hover {
        background-color: #5a6268;
    }

    /* Hero Section */
    .page-8k8-3__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, #e0f7fa, #bbdefb); /* Light blue gradient */
        border-bottom: 5px solid #007bff;
        position: relative;
        overflow: hidden;
    }

    .page-8k8-3__hero-content {
        max-width: 800px;
        z-index: 1;
    }

    .page-8k8-3__hero-title {
        font-size: 3.5em;
        color: #0056b3;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-3__hero-subtitle {
        font-size: 1.4em;
        color: #555;
        margin-bottom: 30px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-3__hero-cta {
        margin-top: 30px;
    }

    .page-8k8-3__cta-text {
        margin-top: 15px;
        font-size: 1.1em;
        color: #666;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-3__hero-image-wrapper {
        margin-top: 40px;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-8k8-3__hero-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        display: block; /* Remove extra space below image */
    }

    /* Steps Section */
    .page-8k8-3__steps-section {
        padding: 80px 20px;
        background-color: #fff;
    }

    .page-8k8-3__steps-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8k8-3__step-item {
        background-color: #f0f8ff; /* Lighter blue background */
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-3__step-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-3__step-icon {
        width: 250px; /* Min width 200px */
        height: auto;
        max-width: 100%; /* Responsive image */
        margin-bottom: 20px;
        border-radius: 8px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .page-8k8-3__step-title {
        font-size: 1.8em;
        color: #007bff;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-3__step-description {
        font-size: 1.1em;
        color: #666;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Benefits Section */
    .page-8k8-3__benefits-section {
        padding: 80px 20px;
        background-color: #e3f2fd; /* Another light blue */
    }

    .page-8k8-3__benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8k8-3__benefit-card {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-3__benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-3__benefit-icon {
        width: 300px; /* Min width 200px */
        height: auto;
        max-width: 100%; /* Responsive image */
        margin-bottom: 20px;
        border-radius: 8px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .page-8k8-3__card-title {
        font-size: 1.8em;
        color: #0056b3;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-3__card-description {
        font-size: 1.1em;
        color: #666;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Security Section */
    .page-8k8-3__security-section {
        padding: 80px 20px;
        background-color: #fff;
    }

    .page-8k8-3__security-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8k8-3__security-image {
        flex: 1;
        min-width: 300px;
        max-width: 500px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-width: 100%; /* Responsive image */
        box-sizing: border-box;
    }

    .page-8k8-3__security-text {
        flex: 2;
        min-width: 300px;
        max-width: 600px;
        font-size: 1.1em;
        color: #555;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-3__security-text strong {
        color: #007bff;
    }

    .page-8k8-3__security-text p {
        margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-8k8-3__faq-section {
        padding: 80px 20px;
        background-color: #f0f8ff;
    }

    .page-8k8-3__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-8k8-3__faq-item {
        background-color: #fff;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-3__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        font-size: 1.2em;
        color: #0056b3;
        cursor: pointer;
        user-select: none;
        background-color: #e3f2fd;
        border-bottom: 1px solid #cce5ff;
        transition: background-color 0.3s ease;
    }

    .page-8k8-3__faq-question:hover {
        background-color: #d0e7fa;
    }

    .page-8k8-3__faq-q-text {
        margin: 0;
        pointer-events: none; /* Prevent text from blocking click */
        font-size: 1em; /* Adjust to fit parent font size */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-3__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #007bff;
        pointer-events: none; /* Prevent toggle from blocking click */
        transition: transform 0.3s ease;
    }

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

    .page-8k8-3__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;
        color: #555;
        background-color: #fff;
    }

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

    .page-8k8-3__faq-answer p {
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Promotions Section */
    .page-8k8-3__promotions-section {
        padding: 80px 20px;
        background-color: #e0f7fa;
        text-align: center;
    }

    .page-8k8-3__promotions-content {
        max-width: 800px;
        margin: 0 auto;
        font-size: 1.1em;
        color: #555;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-3__promotions-content p {
        margin-bottom: 20px;
    }

    .page-8k8-3__promotions-content strong {
        color: #007bff;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-8k8-3__hero-title {
            font-size: 3em;
        }
        .page-8k8-3__hero-subtitle {
            font-size: 1.2em;
        }
        .page-8k8-3__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-3__hero-section {
            padding: 40px 15px;
        }
        .page-8k8-3__hero-title {
            font-size: 2.5em;
        }
        .page-8k8-3__hero-subtitle {
            font-size: 1.1em;
        }
        .page-8k8-3__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .page-8k8-3__steps-section,
        .page-8k8-3__benefits-section,
        .page-8k8-3__security-section,
        .page-8k8-3__faq-section,
        .page-8k8-3__promotions-section {
            padding: 50px 15px;
        }

        /* List item mobile responsiveness */
        .page-8k8-3__steps-container,
        .page-8k8-3__benefits-grid,
        .page-8k8-3__faq-container {
            grid-template-columns: 1fr; /* Stack items */
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-8k8-3__step-item,
        .page-8k8-3__benefit-card,
        .page-8k8-3__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Adjust padding for smaller screens */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8k8-3__step-icon,
        .page-8k8-3__benefit-icon,
        .page-8k8-3__security-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8k8-3__security-content {
            flex-direction: column;
            gap: 20px;
        }

        .page-8k8-3__security-text {
            min-width: unset;
            max-width: 100%;
            text-align: center;
        }

        .page-8k8-3__faq-question {
            font-size: 1.1em;
            padding: 15px 20px;
        }

        .page-8k8-3__faq-answer {
            padding: 0 20px;
        }

        .page-8k8-3__faq-item.active .page-8k8-3__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-3__hero-title {
            font-size: 2em;
        }
        .page-8k8-3__hero-subtitle {
            font-size: 1em;
        }
        .page-8k8-3__button {
            padding: 10px 20px;
            font-size: 1em;
        }
        .page-8k8-3__section-title {
            font-size: 1.5em;
        }
        .page-8k8-3__step-title, .page-8k8-3__card-title {
            font-size: 1.5em;
        }
        .page-8k8-3__step-description, .page-8k8-3__card-description, .page-8k8-3__security-text p, .page-8k8-3__promotions-content p {
            font-size: 0.95em;
        }
        .page-8k8-3__faq-question {
            font-size: 1em;
            padding: 12px 15px;
        }
        .page-8k8-3__faq-answer {
            padding: 0 15px;
        }
        .page-8k8-3__faq-item.active .page-8k8-3__faq-answer {
            padding: 12px 15px !important;
        }
    }
  