
    .page-58-m {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #f8f8f8;
        padding-top: 10px; /* Assuming body padding-top for header offset */
    }

    .page-58-m__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-58-m__hero-section {
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: #fff;
        padding: 60px 20px;
        text-align: center;
        border-radius: 10px;
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
    }

    .page-58-m__hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;\        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
        transform: rotate(45deg);
        opacity: 0.5;
        z-index: 0;
    }

    .page-58-m__hero-content {
        position: relative;
        z-index: 1;
    }

    .page-58-m__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        font-weight: bold;
        color: #fff; /* White text on blue background */
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-58-m__hero-subtitle {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #e0e0e0; /* Light grey text on blue background */
    }

    .page-58-m__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .page-58-m__action-button {
        background-color: #ffc107; /* Yellow */
        color: #333; /* Dark text for contrast */
        padding: 12px 25px;
        border: none;
        border-radius: 30px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        text-decoration: none; /* Ensure no underline if it was an <a> */
        display: inline-block; /* For padding and box-shadow */
        text-align: center;
        min-width: 120px;
    }

    .page-58-m__action-button:hover {
        background-color: #e0a800;
        transform: translateY(-2px);
    }

    .page-58-m__action-button--primary {
        background-color: #28a745; /* Green */
        color: #fff; /* White text for contrast */
    }

    .page-58-m__action-button--primary:hover {
        background-color: #218838;
    }

    .page-58-m__section {
        background-color: #fff;
        padding: 40px 20px;
        margin-bottom: 30px;
        border-radius: 10px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    }

    .page-58-m__section-title {
        font-size: 2em;
        color: #007bff; /* Blue */
        margin-bottom: 25px;
        text-align: center;
        font-weight: bold;
    }

    .page-58-m__section-text {
        font-size: 1.1em;
        color: #555;
        text-align: center;
        margin-bottom: 20px;
    }

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

    .page-58-m__product-item {
        background-color: #f9f9f9;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-58-m__product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .page-58-m__product-image {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
        margin-bottom: 15px;
        object-fit: cover;
        width: 100%; /* Ensure image fills its container */
        min-height: 200px; /* Minimum height for product images */
    }

    .page-58-m__product-title {
        font-size: 1.4em;
        color: #007bff;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-58-m__product-description {
        font-size: 0.95em;
        color: #666;
        flex-grow: 1;
    }

    .page-58-m__features-list {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        max-width: 800px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .page-58-m__feature-item {
        background-color: #e6f2ff; /* Light blue */
        padding: 20px;
        border-left: 5px solid #007bff;
        border-radius: 5px;
        font-size: 1.1em;
        color: #333;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-58-m__faq-section {
        background-color: #f0f8ff; /* Very light blue */
        padding: 40px 20px;
        margin-bottom: 30px;
        border-radius: 10px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    }

    .page-58-m__faq-item {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 1px 5px rgba(0,0,0,0.03);
    }

    .page-58-m__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #007bff; /* Blue */
        color: #fff;
        cursor: pointer;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-58-m__faq-question:hover {
        background-color: #0056b3;
    }

    .page-58-m__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: #fff;
        pointer-events: none; /* Prevent h3 from blocking click on parent */
        flex-grow: 1;
    }

    .page-58-m__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-58-m__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #333;
        background-color: #fdfdfd;
    }

    .page-58-m__faq-item.active .page-58-m__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 15px !important;
        opacity: 1;
    }

    .page-58-m__faq-item.active .page-58-m__faq-toggle {
        content: '−'; /* Changed via JS, but good to have a placeholder */
    }

    .page-58-m__cta-section {
        text-align: center;
        padding: 50px 20px;
        background-color: #007bff;
        color: #fff;
        border-radius: 10px;
        margin-bottom: 30px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .page-58-m__cta-title {
        font-size: 2.2em;
        margin-bottom: 20px;
        color: #fff;
        font-weight: bold;
    }

    .page-58-m__cta-text {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
        .page-58-m__container {
            padding: 15px;
        }

        .page-58-m__hero-title {
            font-size: 2em;
        }

        .page-58-m__hero-subtitle {
            font-size: 1.1em;
        }

        .page-58-m__section-title {
            font-size: 1.8em;
        }

        .page-58-m__product-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-58-m__product-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-58-m__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            left: 20px;
            right: 20px;
            justify-content: space-around;
            bottom: 15px;
            gap: 8px;
        }

        .page-58-m__action-button {
            flex: 1;
            padding: 10px 15px;
            font-size: 1em;
            min-width: unset;
        }

        .page-58-m__features-list {
            grid-template-columns: 1fr;
            padding: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-58-m__feature-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            padding: 15px !important;
        }

        .page-58-m__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }

        .page-58-m__faq-question h3 {
            font-size: 1em;
        }

        .page-58-m__faq-answer {
            padding: 15px 15px !important;
        }

        .page-58-m__cta-title {
            font-size: 1.8em;
        }

        .page-58-m__cta-text {
            font-size: 1em;
        }
    }
  