body{
    height: auto !important;
}

.main {
    background: #faf9ff;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.header {
    padding: 50px 15px 20px;
    font-size: 45px;
    font-weight: 500;
    text-align: center;
    color: #3A57E8;
    background: #fff;
}

.header::after {
    border-bottom: 3px solid;
    border-color: #3A57E8;
    content: '';
    margin: 0 auto;
    display: block;
    height: 15px;
    width: 180px;
}

/* Content part below */

.content {
    max-width: 1000px;
    margin: 0px auto 50px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.initial-text {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    background: #f4f7ff;
    border-left: 5px solid #3A57E8;
    border-radius: 5px;
    margin-bottom: 30px;
}

.initial-text a {
    color: #3A57E8;
    font-weight: 600;
    text-decoration: none;
}

.initial-text a:hover {
    text-decoration: underline;
}

.tutorial {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.step-description {
    font-size: 17px;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.step-description strong {
    color: #3A57E8;
}

.step-note {
    font-size: 15px;
    color: #555;
    background: #fffaf0;
    padding: 10px;
    border-left: 4px solid #ff8c00;
    border-radius: 5px;
    text-align: center;
    width: 90%;
    margin: 10px 0;
}

.step img {
    max-width: 90%;
    height: auto;
    border-radius: 5px;
    border: 2px solid #ddd;
    margin-top: 10px;
    transition: 0.3s ease-in-out;
}

.step img:hover {
    border-color: #3A57E8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .header {
        font-size: 38px;
        padding: 40px 15px 20px;
    }

    .step-description {
        font-size: 16px;
    }

    .step-note {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .header {
        font-size: 28px;
        padding: 30px 10px;
    }

    .content{
        max-width: 100%;
        padding: 20px 10px;
    }

    .initial-text {
        font-size: 16px;
        padding: 15px;
    }

    .step {
        padding: 15px;
    }

    .step-description {
        font-size: 15px;
    }

    .step-note {
        font-size: 13px;
    }

    .step img {
        max-width: 100%;
    }
}
