
.block5 {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 80px;
    margin-bottom: 80px;
    z-index: 10;
}

.block5_left, .block5_right {
    width: 50%;
    padding: 40px;
    background-color: transparent;
    border: 1px solid black;
    box-sizing: border-box;
}

.block5 h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 00px;
}

.block5 p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #666;
}

.block5_contact_link {
    display: inline-block;
    padding: 12px 30px;
    background-color: black;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    outline: none;
    border-width: 1px;
    border-color: black;
    border-style: solid;
}

.block5_contact_link:hover, .block1_canvasbuttonin:hover {
    background-color: #333;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.block5_newsletter_form {
    display: flex;
    gap: 10px;
}

.block5_newsletter_form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.block5_newsletter_form button {
    padding: 12px 25px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.block5_newsletter_form button:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .block5 {
        flex-direction: column;
    }
    
    .block5_left, .block5_right {
        width: 100%;
    }
    
    .block5_newsletter_form {
        flex-direction: column;
    }
    
    .block5_newsletter_form button {
        width: 100%;
    }
}

.mc-field-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    gap: 5px;
}

.block5_input {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid black;
    border-radius: 0px;
    font-size: 16px;
    font-family: "Playfair Display", serif;
    background-color: transparent;
}