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

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

bold {
    font-weight: 600;
}

.guide-introduction {
    margin-bottom: 1em;
    margin-top: -2em;
}

.guide-container {
    background-color: #F9F9F9;
    margin-bottom: -2em;
}

.guide-content {
    display: flex;
    flex-direction: column;
    padding-top: 1em;
    padding-bottom: 1em;
    gap: 1em;
    margin-left: auto;
    margin-right: auto;
}

.guide-block div h4 {
    margin-bottom: 0;
}

.guide-block img {
    border-radius: 5%;
}
.template-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 2em;
    gap: 1em;
}

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

.template-container div img {
    cursor: zoom-in;
    max-width: 80%;
    transition: transform 0.3s ease;
}

.template-button_holder {
    margin-top: .5em;
}

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

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

.price-content h3 {
    margin: 0;
}

.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;
        align-items: center;
    }
    
    .template-container div img {
        max-height: 466px;
    }
    
    .template-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}