.hero {
    position: relative;
    width: 100%;
    height: 30vh; /* Adjust the height as needed */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Tinted overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}



.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sidebar Form */
.sidebar-form {
    background: #f8f9fa; /* Light gray background for a modern touch */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Form Input Fields */
.wpcf7-form input,
.wpcf7-form textarea {
    width: 100%;
    border: 2px solid #ced4da;
    border-radius: 6px;
    padding: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.2s ease;
}

.wpcf7-form textarea {
    resize: none;
}

/* Focus Effect */
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: #546672;
    box-shadow: 0px 0px 5px rgba(84, 102, 114, 0.3);
    outline: none;
}

/* Submit Button */
.wpcf7-form input[type="submit"] {
    font-weight: 600;
    color: #fff;
    border: none;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 1.1rem;
    background: #546672;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover Effect */
.wpcf7-form input[type="submit"]:hover {
    background: #405160;
    transform: translateY(-2px);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
}

.sidebar{
    border-left: solid 1px #e3ecf0;
}