
    /* CSS Styles for resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide */
    :root {
        --page-primary-color: #007bff;
        --page-secondary-color: #6c757d;
        --page-text-color: #333;
        --page-background-color: #f8f9fa;
        --page-card-background: #ffffff;
        --page-border-color: #e0e0e0;
        --page-highlight-color: #ffc107;
        --page-dark-text: #212529;
        --page-light-text: #f8f9fa;
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--page-text-color);
        background-color: var(--page-background-color);
        padding: 10px 0 40px 0; /* Adjusted for fixed header */
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__container {
        max-width: 960px;
        margin: 0 auto;
        padding: 20px;
        background-color: var(--page-card-background);
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__hero-section {
        text-align: center;
        margin-bottom: 40px;
        padding-top: 10px; /* Ensure content is not hidden by fixed header */
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__hero-image {
        width: 100%;
        max-width: 800px;
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__main-title {
        color: var(--page-dark-text);
        font-size: 2.5em;
        margin-bottom: 15px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__intro-text {
        font-size: 1.1em;
        color: var(--page-secondary-color);
        margin-bottom: 30px;
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__section-title {
        color: var(--page-primary-color);
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 25px;
        border-bottom: 2px solid var(--page-primary-color);
        padding-bottom: 10px;
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__step-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__step-item {
        background-color: var(--page-background-color);
        border: 1px solid var(--page-border-color);
        border-radius: 6px;
        margin-bottom: 20px;
        padding: 25px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__step-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__step-heading {
        color: var(--page-dark-text);
        font-size: 1.4em;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__step-content {
        font-size: 1em;
        color: var(--page-text-color);
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__note-box {
        background-color: #fff3cd; /* Light yellow */
        border-left: 5px solid #ffc107; /* Orange */
        padding: 20px;
        margin: 30px 0;
        border-radius: 4px;
        color: #664d03;
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__note-box p {
        margin: 0;
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__conclusion-text {
        font-size: 1.1em;
        text-align: center;
        margin-top: 40px;
        color: var(--page-dark-text);
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__disclaimer {
        font-size: 0.9em;
        color: var(--page-secondary-color);
        text-align: center;
        margin-top: 20px;
        padding: 15px;
        background-color: #f0f0f0;
        border-radius: 5px;
    }

    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__strong {
        color: var(--page-primary-color);
        font-weight: bold;
    }

    /* Images responsiveness */
    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
        margin: 20px auto;
        border-radius: 8px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide {
            padding: 10px 0 20px 0; /* Adjusted for fixed header */
        }
        .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__container {
            padding: 15px;
        }

        .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__hero-section {
            margin-bottom: 20px;
            padding-top: 10px; /* Ensure content is not hidden by fixed header */
        }

        .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__main-title {
            font-size: 2em;
        }

        .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__intro-text,
        .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__conclusion-text {
            font-size: 1em;
        }

        .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__section-title {
            font-size: 1.5em;
            margin-top: 30px;
            margin-bottom: 20px;
        }

        .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__step-item {
            padding: 15px;
            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;
            word-break: break-word !important;
        }

        .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__step-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-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__step-heading {
            font-size: 1.2em;
        }
        
        /* Image specific mobile styles */
        .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
    }

    /* Ensure good contrast */
    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__main-title,
    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__section-title,
    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__step-heading {
        color: #212529; /* Darker for better contrast */
    }
    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide p,
    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide li {
        color: #333; /* Standard dark grey */
    }
    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__strong {
        color: #0056b3; /* Darker blue for emphasis */
    }
    .page-resources-how-to-start-using-3win-a-complete-beginners-step-by-step-guide__note-box {
        color: #493501; /* Darker text for yellow background */
    }
  