body {
    font-family: Arial, sans-serif;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-subtitle {
    font-size: 34px;
    text-align: center;
    font-weight: bold;
}

.faq-title {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.faq-question {
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    margin: 10px 0;
    padding: 10px 0;
}

.faq-answer {
    display: none;
    font-size: 14px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
}

.faq-answer h3 {
    font-size: 22px;
    color: #6793ff;
}

.separator {
    border-bottom: 2px solid #000;
}

.separator2 {
    border-bottom: 1px solid #e1e1e1;
}

.installation-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-with-image {
    display: flex;
    gap: 20px;
}

.step .step-main {
    font-size: 20px;
    font-weight: 800;
}

.step .step-sub {
    font-size: 17px;
    font-weight: 500;
}

.step.step-text-only {
    margin-left: 170px;
}

.step-with-image img {
    width: 30%;
    max-width: 150px;
}

@media (max-width : 1024px) {
    .faq-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .step-with-image img {
        width: 30%;
        max-width: none;
        margin: 0 auto;
    }

    .step {
        display: flex;
        flex-direction: column;
    }

    .faq-subtitle {
        font-size: 60px;
    }

    .faq-title {
        font-size: 120px;
    }

    .faq-answer h3 {
        font-size: 30px;
    }

    .faq-question {
        font-size: 30px;
    }

    .step.step-text-only {
        margin-left: 0;
    }

    pre {
        max-width: 100%;
        overflow-x: auto;
        white-space: pre-wrap;
        word-wrap: break-word;
    }

    .step .step-main {
        font-size: 40px;
        word-break: break-all;
    }

    pre {
        font-size: 24px;
    }

    .step .step-sub {
        font-size: 32px;
        word-break: keep-all;
    }
}