.jz-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 300px;
    height: 300px;
}

.jz-img-profile {
    margin: 0 auto;
    width: 300;
    max-width: 300px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.jz-img-cap {
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
}

.jz-info-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    .column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex: 1;
    }
}

.jz-page-title {
    font-size: 2em;
    margin-bottom: 1em;
    text-align: center;
}

.jz-img-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
}

.jz-info-list {
    list-style: none;
}

.jz-info-item {
    margin-bottom: 0.5em;
}

.jz-info-item::before {
    content: "\2022";
    color: #008080;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.jz-info-divider {
    border: none;
    border-top: 1px solid #008080;
    margin: 1em 0;
}

.jz-button {
    padding: 10px 20px;
    border-radius: 25px;
    background-color: transparent;
    color: #008080;
    border: 1px solid #008080;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
    margin-left: 10%;
    text-decoration: none;

    &:hover {
        background-color: #008080;
        color: #fff;
    }
}

.jz-pdf-btn-container {
    display: flex;
    justify-content: start;
    width: 100%;
}

@media (max-width: 768px) {
    .jz-info-wrapper {
        flex-direction: column;
    }

    .jz-wrapper {
        margin-bottom: 50px;
    }

    .jz-pdf-btn-container {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .jz-button {
        margin: 0;
        margin-bottom: 20px;
    }
}