
    /* CSS Styles for page-resources-how-to-start-using-win365-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-dark-text: #212529;
        --page-light-text: #666;
        --page-accent-color: #dc3545; /* Red for emphasis */
    }

    .page-resources-how-to-start-using-win365-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-top: 10px; /* For fixed header */
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__hero-section {
        text-align: center;
        padding: 60px 20px;
        background-color: var(--page-primary-color);
        color: #fff;
        border-radius: 8px;
        margin-bottom: 40px;
        box-sizing: border-box;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        font-weight: bold;
        color: #fff;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__hero-description {
        font-size: 1.2em;
        max-width: 800px;
        margin: 0 auto;
        color: #e9ecef;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__section-title {
        font-size: 2em;
        color: var(--page-dark-text);
        margin-bottom: 30px;
        text-align: center;
        position: relative;
        padding-bottom: 10px;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--page-primary-color);
        border-radius: 2px;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__content-block {
        background-color: var(--page-card-background);
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__step-title {
        font-size: 1.6em;
        color: var(--page-primary-color);
        margin-top: 0;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__step-number {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background-color: var(--page-primary-color);
        color: #fff;
        border-radius: 50%;
        font-size: 1.2em;
        font-weight: bold;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__paragraph {
        margin-bottom: 15px;
        color: var(--page-dark-text);
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__image-wrapper {
        text-align: center;
        margin: 30px 0;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__list {
        list-style: disc inside;
        margin-bottom: 15px;
        padding-left: 20px;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__list-item {
        margin-bottom: 8px;
        color: var(--page-dark-text);
        word-wrap: break-word; /* Ensure text wraps */
        overflow-wrap: break-word; /* Ensure text wraps */
    }

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

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__note {
        background-color: #fff3cd;
        border-left: 5px solid #ffc107;
        padding: 15px 20px;
        border-radius: 5px;
        margin: 25px 0;
        color: #856404;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__note-title {
        font-weight: bold;
        margin-top: 0;
        margin-bottom: 10px;
        color: #856404;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__button {
        display: inline-block;
        padding: 12px 25px;
        background-color: var(--page-accent-color);
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 1.1em;
        cursor: pointer;
        transition: background-color 0.3s ease;
        text-decoration: none;
        text-align: center;
        margin-top: 20px;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__button:hover {
        background-color: #c82333;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-section {
        margin-top: 40px;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-item {
        background-color: var(--page-card-background);
        border: 1px solid var(--page-border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 25px;
        cursor: pointer;
        background-color: #f0f0f0;
        color: var(--page-dark-text);
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-question:hover {
        background-color: #e9e9e9;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: inherit;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--page-primary-color);
        pointer-events: none; /* Prevent toggle from blocking click */
        transition: transform 0.3s ease;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-item.active .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - visually */
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: var(--page-card-background);
        color: var(--page-light-text);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-item.active .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-answer p {
        margin-top: 0;
        margin-bottom: 15px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide {
            padding-top: 10px; /* For fixed header on mobile */
        }
        .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__container {
            padding: 15px;
        }
        .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__hero-title {
            font-size: 2em;
        }
        .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__hero-description {
            font-size: 1em;
        }
        .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__section-title {
            font-size: 1.6em;
            margin-bottom: 25px;
        }
        .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__step-title {
            font-size: 1.3em;
        }
        .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__step-number {
            width: 35px;
            height: 35px;
            font-size: 1.1em;
            margin-right: 10px;
        }
        .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__content-block {
            padding: 20px;
        }
        .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__list {
            padding-left: 15px !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__list-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 0 !important; /* Adjust if needed due to list-style-position: inside */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
            margin: 20px 0 !important;
        }
        .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-question {
            padding: 15px 20px;
            font-size: 1em;
        }
        .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-question h3 {
            font-size: 1em;
        }
        .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-answer {
            padding: 0 20px;
        }
        .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-item.active .page-resources-how-to-start-using-win365-a-complete-beginners-step-by-step-guide__faq-answer {
            padding: 15px 20px !important;
        }
    }
  