/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif;
    font-size: 11pt;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 1in;
}

.container {
    max-width: 800px;
    margin: 0;
    padding: -20px 20px 20px 20px;
	
}

/* Title styles */
.title {
    font-size: 20pt;
    color: #009845;
    font-weight: normal;
    margin-top: 15pt;
    margin-bottom: 7.5pt;
    line-height: normal;
}

/* Introduction paragraph */
.intro {
    margin-bottom: 16pt;
    font-size: 11pt;
}

/* List styles */
.main-list {
    list-style: none;
    margin-bottom: 16pt;
}

.important-note {
    position: relative;
    padding-left: 20px;
    color: #000;
    margin-bottom: 8pt;
}

.important-note::before {
    content: "•";
    position: absolute;
    left: 0;
    font-family: Symbol;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    margin-bottom: 16pt;
}

.steps-list > li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 30px;
    margin-bottom: 16pt;
    color: #000;
}

.steps-list > li::before {
    content: counter(step-counter) ".";
    position: absolute;
    left: 0;
    font-weight: normal;
}

.sub-list {
    list-style: none;
    margin-top: 8pt;
    margin-left: 20px;
}

.sub-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 4pt;
    color: #000;
}

.sub-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-family: Symbol;
}

/* Link styles */
a {
    color: #0066cc;
    text-decoration: underline;
}

a:visited {
    color: #954F72;
}

a:hover {
    text-decoration: none;
}

/* Image styles */
.image-container {
    margin: 16pt 0;
    text-align: center;
}

.screenshot {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mobile-screenshot {
    max-width: 250px;
}

.image-caption {
    margin-top: 8pt;
    font-size: 10pt;
    color: #666;
    font-style: italic;
}

/* Section styles */
.success-section {
    margin: 24pt 0;
    background: #f9f9f9;
    padding: 16pt;
    border-left: 4px solid #009845;
}

.windows-note,
.mac-note {
    margin-bottom: 8pt;
    color: #54565A;
}

.help-section {
    margin-top: 24pt;
    padding: 16pt;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
}

.help-title {
    color: #d63031;
}

.help-section a {
    color: #4472C4;
    font-weight: bold;
}

/* Strong/bold text */
strong {
    font-weight: bold;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        margin: 0.5in;
    }
    
    .container {
        padding: 10px;
    }
    
    .title {
        font-size: 18pt;
    }
    
    .steps-list > li {
        padding-left: 25px;
    }
}