
    /* General styles for the page-link-234 scope */
    .page-link-234 {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f9f9f9;
        padding-top: 10px; /* Small top padding for visual separation from header */
    }

    .page-link-234__section-title {
        text-align: center;
        font-size: 2.5em;
        color: #c0392b; /* A strong red for emphasis */
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
    }

    .page-link-234__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: #e74c3c;
        border-radius: 2px;
    }

    /* Hero Section */
    .page-link-234__hero-section {
        background: linear-gradient(135deg, #e74c3c, #c0392b);
        color: #fff;
        padding: 80px 20px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 400px;
    }

    .page-link-234__hero-content {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-link-234__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-link-234__hero-description {
        font-size: 1.3em;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-link-234__hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .page-link-234__button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-link-234__button--primary {
        background-color: #f1c40f; /* Yellow for primary action */
        color: #333;
        border: none;
    }

    .page-link-234__button--primary:hover {
        background-color: #f39c12;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .page-link-234__button--secondary {
        background-color: rgba(255, 255, 255, 0.2);
        color: #fff;
        border: 2px solid #fff;
    }

    .page-link-234__button--secondary:hover {
        background-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    /* Features Section */
    .page-link-234__features-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-link-234__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .page-link-234__feature-item {
        background-color: #fff;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-link-234__feature-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .page-link-234__feature-icon {
        width: 300px; /* Min size 200x200 */
        height: 300px; /* Min size 200x200 */
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
        border-radius: 50%;
        object-fit: cover;
    }

    .page-link-234__feature-title {
        font-size: 1.8em;
        color: #c0392b;
        margin-bottom: 15px;
    }

    .page-link-234__feature-text {
        font-size: 1.1em;
        color: #555;
    }

    /* Products Section */
    .page-link-234__products-section {
        padding: 60px 20px;
        background-color: #f1f1f1;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-link-234__products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .page-link-234__product-card {
        background-color: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
    }

    .page-link-234__product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .page-link-234__product-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        max-width: 100%;
        height: auto;
        display: block;
    }

    .page-link-234__product-title {
        font-size: 1.6em;
        color: #c0392b;
        margin: 20px 15px 10px;
    }

    .page-link-234__product-description {
        font-size: 1em;
        color: #666;
        padding: 0 15px 20px;
    }

    /* Promotions Section */
    .page-link-234__promotions-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-link-234__promotions-list {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }

    .page-link-234__promotion-item {
        background-color: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        box-sizing: border-box; /* Required for list items */
    }

    .page-link-234__promotion-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .page-link-234__promotion-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%;
        height: auto;
        display: block;
    }

    .page-link-234__promotion-title {
        font-size: 1.5em;
        color: #c0392b;
        margin: 20px 15px 10px;
    }

    .page-link-234__promotion-description {
        font-size: 1em;
        color: #666;
        padding: 0 15px 20px;
    }

    .page-link-234__button-wrapper {
        text-align: center;
    }

    .page-link-234__button--large {
        padding: 18px 35px;
        font-size: 1.2em;
    }

    /* Guide Section */
    .page-link-234__guide-section {
        padding: 60px 20px;
        background-color: #f1f1f1;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-link-234__guide-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .page-link-234__guide-step-item {
        background-color: #fff;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .page-link-234__guide-step-number {
        width: 60px;
        height: 60px;
        line-height: 60px;
        background-color: #c0392b;
        color: #fff;
        border-radius: 50%;
        font-size: 2em;
        font-weight: bold;
        margin: 0 auto 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-link-234__guide-step-title {
        font-size: 1.8em;
        color: #c0392b;
        margin-bottom: 15px;
    }

    .page-link-234__guide-step-description {
        font-size: 1.1em;
        color: #555;
    }

    /* FAQ Section */
    .page-link-234__faq-section {
        padding: 60px 20px;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-link-234__faq-container {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .page-link-234__faq-item {
        border-bottom: 1px solid #eee;
        background-color: #fff;
    }

    .page-link-234__faq-item:last-child {
        border-bottom: none;
    }

    .page-link-234__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #f8f8f8;
        transition: background-color 0.3s ease;
    }

    .page-link-234__faq-question:hover {
        background-color: #f0f0f0;
    }

    .page-link-234__faq-question h3 {
        margin: 0;
        font-size: 1.3em;
        color: #333;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-link-234__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: #c0392b;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click */
    }

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

    .page-link-234__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: #555;
        font-size: 1.1em;
    }

    .page-link-234__faq-item.active .page-link-234__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 25px !important;
        opacity: 1;
    }

    /* CTA Section */
    .page-link-234__cta-section {
        background: linear-gradient(45deg, #c0392b, #e74c3c);
        color: #fff;
        padding: 80px 20px;
        text-align: center;
        margin-top: 60px;
    }

    .page-link-234__cta-section .page-link-234__section-title {
        color: #fff;
    }

    .page-link-234__cta-section .page-link-234__section-title::after {
        background-color: #f1c40f;
    }

    .page-link-234__cta-description {
        font-size: 1.4em;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-link-234__hero-title {
            font-size: 3em;
        }
        .page-link-234__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-link-234__hero-section {
            padding: 60px 15px;
            min-height: 300px;
        }

        .page-link-234__hero-title {
            font-size: 2.5em;
        }

        .page-link-234__hero-description {
            font-size: 1.1em;
        }

        .page-link-234__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-link-234__button {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
            padding: 12px 25px;
        }

        .page-link-234__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .page-link-234__features-section,
        .page-link-234__products-section,
        .page-link-234__promotions-section,
        .page-link-234__guide-section,
        .page-link-234__faq-section,
        .page-link-234__cta-section {
            padding: 40px 15px;
        }

        .page-link-234__features-grid,
        .page-link-234__products-grid,
        .page-link-234__promotions-list,
        .page-link-234__guide-steps {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        /* List item specific mobile styles */
        .page-link-234__promotions-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-link-234__promotion-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px; /* Adjust padding for smaller screens */
        }
        .page-link-234__promotion-description {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-link-234__feature-item,
        .page-link-234__product-card,
        .page-link-234__guide-step-item {
            padding: 20px;
        }

        .page-link-234__feature-icon {
            width: 200px;
            height: 200px;
        }

        .page-link-234__feature-title,
        .page-link-234__product-title,
        .page-link-234__promotion-title,
        .page-link-234__guide-step-title {
            font-size: 1.5em;
        }

        .page-link-234__faq-question {
            padding: 15px 20px;
        }
        .page-link-234__faq-question h3 {
            font-size: 1.1em;
        }
        .page-link-234__faq-answer {
            padding: 15px 20px !important; /* Adjust for mobile */
            font-size: 1em;
        }

        .page-link-234__cta-description {
            font-size: 1.2em;
        }
        .page-link-234__button--large {
            padding: 15px 30px;
            font-size: 1.1em;
        }

        /* All images must be responsive */
        .page-link-234 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-link-234__product-image,
        .page-link-234__promotion-image {
            height: 180px; /* Adjust height for smaller screens if needed */
        }
    }

    @media (max-width: 480px) {
        .page-link-234__hero-title {
            font-size: 2em;
        }
        .page-link-234__section-title {
            font-size: 1.5em;
        }
        .page-link-234__button {
            font-size: 1em;
            padding: 10px 20px;
        }
        .page-link-234__guide-step-number {
            width: 50px;
            height: 50px;
            line-height: 50px;
            font-size: 1.8em;
        }
        .page-link-234__faq-question h3 {
            font-size: 1em;
        }
    }
  