.section-padding > div:first-of-type {
    margin-left: auto;
    margin-right: auto;
}

.section-padding {
    padding-top: 2em;
    padding-bottom: 2em;
}

bold {
    font-weight: 600;
}

.report-button_holder {
    margin-top: 1em;
}

.guide-section {
    background-color: #F9F9F9;
}

.step-container {
    padding-top: 1em;
    padding-bottom: 1em;
    margin-top: 1em;
}

.step-container .content {
    margin-left: auto;
    margin-right: auto;
}

.step-guide-text {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
}

.step-guide-arrow {
    position: absolute;
    right: -36%;
    width: 30%;
    top: 25%;
}

.step-guide-text div {
    width: 25%;
    position: relative;
}

.step-guide-text div p {
    display: block;
    text-align: center;
}

.step-card-container {
    padding-top: 2em;
    padding-bottom: 2em;
    margin-left: auto;
    margin-right: auto;
}

.step-card-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    row-gap: 1em;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 12px rgba(0,0,0, 0.1);
    gap: .5em;
    padding: 15px;
    padding-bottom: 50px;
    border-radius: 5px;
    flex: 1;
}

.step-card h4 {
    font-size: 20px;
}

.template-container {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5em;
}

.template-container div {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.template-container div img {
    max-width: 200px;
    transition: transform 0.3s ease;
}

.template-text-container {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.template-text-container h3 {
    margin: 0;
}

.template-italic {
    margin-bottom: -0.5em;
}

.price-section {
    background-color: #EFF3F9;
}

.price-section .content {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.zoomable-image {
    cursor: zoom-in;
}

.image-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 8;
}

.zoomed-image {
    max-width: 90%;
    max-height: 60%;
    cursor: zoom-out;
    box-shadow: 0 0 20px rgba (0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

@media only screen and (min-width: 640px) {
    .guide-block {
        display: flex;
        flex-direction: row;
        gap: 1em;
    }
    
    .step-card-content {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        max-width: none;
        gap: 1em;
    }
    
    .step-content {
        display: flex;
        flex-direction: column;
    }
    
    .step-guide-text {
        margin-top: 1em;
        width: 82%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .step-guide-text {
        gap: 40px
    }
    
    .step-guide-text div {
        width: 25%
    }
    
    .step-guide-text div p {
        font-size: 20px;
    }
    
    .template-container {
        display: flex;
        flex-direction: row;
        justify-content: start;
    }
}