.instructions-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    color: #333;
}

.instructions-container h1 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 28px;
}

.step {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
}

.step-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #0948BF;
    font-weight: 500;
    font-size: 20px;
}

.step-title i {
    margin-right: 12px;
    font-size: 20px;
}

.step-content {
    padding-left: 32px;
}

.step-content h3 {
    font-size: 17px;
    margin-bottom: 12px;
    margin-top: 20px;
    font-weight: 500;
    color: #444;
}

.step-content p {
    margin-bottom: 12px;
}

.step-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.step-content li {
    margin-bottom: 8px;
}

.important-note {
    border-radius: 8px;
    background-color: #f7f7f7;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 6px;
    color: #6f6f6f;
}

.important-note .title {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.troubleshooting {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.troubleshooting h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}

.problem {
    margin-bottom: 20px;
}

.problem-title {
    font-weight: 500;
    margin-bottom: 10px;
    color: #bf0909;
    background-color: #FFDCDC;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
}

.solution {
    padding-left: 15px;
}

.instructions-container a {
    color: #0948BF;
    text-decoration: none;
}

.instructions-container a:hover {
    text-decoration: underline;
}

.back-btn {
    display: inline-block;
    background-color: #D6E4FE;
    color: #0948BF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin: 10px 0;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-decoration: none;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

kbd {
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
    color: #333;
    display: inline-block;
    font-size: 1em;
    line-height: 1;
    padding: 2px 5px;
}