.perso-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}
.page-title h1 {
    font-size: 80px;
}

.pers-grid-items iframe {
    width: 100%;
    min-height: 500px;
    border: 0;
    border-radius: 8px;
}


/* Contact Us Button Styling */
.pers-grid-items button {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
    padding: 15px 40px;
    font-size: 16px;
    font-family: "Wix Madefor Text", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    display: inline-block;
}

.pers-grid-items button:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.pers-grid-items iframe {
    border-radius: 0px;
}

@media (max-width: 767.98px) {
    .perso-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }

    .pers-grid-items button {
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
    }
}
