
    .page-12by {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f8f8f8;
        padding-top: 10px; /* Small decorative padding, body handles main offset */
    }

    .page-12by__section-title {
        font-size: 2.5em;
        color: #0a4f8f; /* Dark blue for titles */
        text-align: center;
        margin-bottom: 20px;
        padding-top: 40px;
    }

    .page-12by__section-description {
        font-size: 1.1em;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px;
        color: #555;
    }

    /* Hero Section */
    .page-12by__hero-section {
        position: relative;
        width: 100%;
        height: 600px; /* Adjust as needed */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        color: #fff;
        background: linear-gradient(135deg, #0a4f8f, #007bff); /* Blue gradient */
    }

    .page-12by__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6; /* Semi-transparent overlay */
        z-index: 1;
    }

    .page-12by__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
        border-radius: 10px;
    }

    .page-12by__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        color: #fff; /* White text on dark background for contrast */
    }

    .page-12by__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        color: #eee; /* Light gray for description */
    }

    .page-12by__hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .page-12by__btn {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
        text-align: center;
    }

    .page-12by__btn--primary {
        background-color: #ffc107; /* Yellow for primary action */
        color: #333;
    }

    .page-12by__btn--primary:hover {
        background-color: #e0a800;
        transform: translateY(-2px);
    }

    /* Product Showcase */
    .page-12by__product-showcase {
        padding: 60px 20px;
        background-color: #fff;
    }

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

    .page-12by__product-card {
        background-color: #fefefe;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding-bottom: 20px;
        box-sizing: border-box;
    }

    .page-12by__product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-12by__product-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        margin-bottom: 15px;
        max-width: 100%; /* Image responsiveness */
        height: auto; /* Image responsiveness */
    }

    .page-12by__product-title {
        font-size: 1.8em;
        color: #0a4f8f;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-12by__product-text {
        font-size: 1em;
        color: #666;
        padding: 0 15px;
    }

    /* Why Choose Section */
    .page-12by__why-choose {
        padding: 60px 20px;
        background-color: #e6f2ff; /* Light blue background */
    }

    .page-12by__why-choose-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-12by__feature-card {
        text-align: center;
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-12by__feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .page-12by__feature-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 20px;
        max-width: 100%; /* Image responsiveness */
        height: auto; /* Image responsiveness */
    }

    .page-12by__feature-title {
        font-size: 1.5em;
        color: #0a4f8f;
        margin-bottom: 10px;
    }

    .page-12by__feature-description {
        font-size: 0.95em;
        color: #666;
    }

    /* Promotions Section */
    .page-12by__promotions {
        padding: 60px 20px;
        background-color: #fefefe;
    }

    .page-12by__promotion-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-12by__promotion-item {
        display: flex;
        align-items: center;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-12by__promotion-image {
        width: 40%;
        height: 250px;
        object-fit: cover;
        max-width: 100%; /* Image responsiveness */
        height: auto; /* Image responsiveness */
    }

    .page-12by__promotion-content {
        width: 60%;
        padding: 25px;
        box-sizing: border-box;
    }

    .page-12by__promotion-title {
        font-size: 1.6em;
        color: #0a4f8f;
        margin-bottom: 10px;
    }

    .page-12by__promotion-description {
        font-size: 1em;
        color: #555;
    }

    /* FAQ Section */
    .page-12by__faq-section {
        padding: 60px 20px;
        background-color: #f2f2f2;
    }

    .page-12by__faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-12by__faq-item {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-12by__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #f9f9f9;
        border-bottom: 1px solid #eee;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-12by__faq-question:hover {
        background-color: #eef;
    }

    .page-12by__faq-question-text {
        font-size: 1.3em;
        color: #0a4f8f;
        margin: 0;
        pointer-events: none; /* Prevent text from blocking click event */
    }

    .page-12by__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: #0a4f8f;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-12by__faq-item.active .page-12by__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-12by__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;
        box-sizing: border-box;
    }

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

    .page-12by__faq-answer p {
        margin: 0;
        color: #444;
        font-size: 1em;
    }

    /* About Us Section */
    .page-12by__about-us {
        padding: 60px 20px;
        background-color: #fff;
    }

    .page-12by__about-content {
        display: flex;
        align-items: center;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-12by__about-image {
        width: 50%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        object-fit: cover;
        max-width: 100%; /* Image responsiveness */
    }

    .page-12by__about-text {
        width: 50%;
        color: #444;
    }

    .page-12by__about-text p {
        margin-bottom: 15px;
        font-size: 1.05em;
    }

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

    .page-12by__floating-btn {
        display: block;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, background-color 0.3s ease;
        min-width: 120px; /* Ensure buttons have a minimum width */
    }

    .page-12by__floating-btn--register {
        background-color: #ffc107; /* Yellow */
        color: #333;
    }

    .page-12by__floating-btn--register:hover {
        background-color: #e0a800;
        transform: translateY(-3px);
    }

    .page-12by__floating-btn--login {
        background-color: #007bff; /* Blue */
        color: #fff;
    }

    .page-12by__floating-btn--login:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-12by__hero-title {
            font-size: 3em;
        }
        .page-12by__hero-description {
            font-size: 1.2em;
        }
        .page-12by__promotion-item {
            flex-direction: column;
        }
        .page-12by__promotion-image,
        .page-12by__promotion-content {
            width: 100%;
        }
        .page-12by__about-content {
            flex-direction: column;
        }
        .page-12by__about-image,
        .page-12by__about-text {
            width: 100%;
        }
        .page-12by__about-image {
            margin-bottom: 20px;
        }
    }

    @media (max-width: 768px) {
        .page-12by__hero-section {
            height: 500px;
        }
        .page-12by__hero-title {
            font-size: 2.2em;
        }
        .page-12by__hero-description {
            font-size: 1em;
        }
        .page-12by__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-12by__btn {
            width: 80%;
            margin: 0 auto;
        }
        .page-12by__section-title {
            font-size: 2em;
            padding-top: 30px;
        }
        .page-12by__section-description {
            font-size: 1em;
            margin-bottom: 30px;
        }

        /* List Item Responsiveness for Product Grid */
        .page-12by__product-grid {
            grid-template-columns: 1fr;
        }
        .page-12by__product-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px 10px; /* Adjust padding */
        }
        .page-12by__product-title {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-12by__product-text {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        /* List Item Responsiveness for Why Choose Grid */
        .page-12by__why-choose-grid {
            grid-template-columns: 1fr;
        }
        .page-12by__feature-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px 15px; /* Adjust padding */
        }
        .page-12by__feature-title {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-12by__feature-description {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        /* List Item Responsiveness for Promotion List */
        .page-12by__promotion-list {
            grid-template-columns: 1fr;
        }
        .page-12by__promotion-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            flex-direction: column;
        }
        .page-12by__promotion-image,
        .page-12by__promotion-content {
            width: 100% !important;
        }
        .page-12by__promotion-image {
            height: 200px;
        }
        .page-12by__promotion-content {
            padding: 15px;
        }
        .page-12by__promotion-title {
            font-size: 1.4em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-12by__promotion-description {
            font-size: 0.9em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        /* FAQ Section */
        .page-12by__faq-question {
            padding: 15px 20px;
        }
        .page-12by__faq-question-text {
            font-size: 1.1em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-12by__faq-toggle {
            font-size: 1.5em;
        }
        .page-12by__faq-answer {
            padding: 0 20px;
        }
        .page-12by__faq-item.active .page-12by__faq-answer {
            padding: 15px 20px !important;
        }
        .page-12by__faq-answer p {
            font-size: 0.9em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        /* About Us Section */
        .page-12by__about-content {
            flex-direction: column;
            gap: 20px;
        }
        .page-12by__about-image,
        .page-12by__about-text {
            width: 100%;
        }
        .page-12by__about-text p {
            font-size: 0.95em;
        }

        /* Floating Buttons */
        .page-12by__floating-buttons {
            bottom: 15px;
            right: 15px;
        }
        .page-12by__floating-btn {
            padding: 10px 20px;
            font-size: 1em;
            min-width: 100px;
        }
    }

    @media (max-width: 480px) {
        .page-12by__hero-title {
            font-size: 1.8em;
        }
        .page-12by__section-title {
            font-size: 1.8em;
        }
        .page-12by__btn {
            width: 90%;
        }
        .page-12by__floating-buttons {
            right: 10px;
            bottom: 10px;
            gap: 8px;
        }
        .page-12by__floating-btn {
            padding: 8px 18px;
            font-size: 0.9em;
            min-width: 90px;
        }
    }
  