

  /* Form Container */
.contact-form {
    background: #c4e9e6;
    padding: 40px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 5%;
    margin-top: 14%;
    border: solid 2px #333;
    
}

  /* Input & Textarea Styling */
.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    resize: none;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0077ff;
    outline: none;
}

  /* Button Styling */
.contact-form button {
    padding: 12px;
    font-weight: bold;
    background-color: #0077ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #005ecc;
}



.form-inline-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin: 50px auto;
    max-width: 1100px;
    padding: 20px;
    flex-wrap: wrap;
}

.form-text {
    flex: 1;
    min-width: 280px;
    font-family: "Josefin Sans", sans-serif;
}

.form-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #0077ff;
}
.form-text h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #0077ff;
}

.jump-text{
    margin-top: 5px;
    border-radius: 0;
}

.form-text p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    max-width: 400px;
    background-color: #c4e9e6;
    font-weight: 600;
    border-radius: 0px 0 25px 0;
    padding: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 15px 0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .form-inline-wrapper {
    flex-direction: column;
    align-items: center;
    }

    .form-text, .contact-form {
    width: 100%;
    text-align: center;
    }

    .form-text p {
    max-width: none;
    }

    .whats-banner,.close-banner {
        display: none;
    }
}

.form-text {
    margin-top: 50px;
}

.whats-banner img{
    max-width: 140px;
}

.whats-banner {
    position: fixed; /* Keeps the div in a fixed position relative to the viewport */
    top: 22%;       /* Adjust as needed to vertically center (or position as desired) */
    right: 6px;    /* Adjust this value to control the distance from the right edge */
    transform: translateY(-50%); /* Adjusts for the div's height to truly center vertically */
    /* Add any other styles you want for the banner */
    z-index: 1000; /* Ensures it stays on top of other elements if needed */
}

.close-banner {
    position: absolute;
    top: 12px;
    right: 12px;
    background: red;
    color: white;
    border: none;
    padding: 4px 8px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 0 0 5px;
}
