#contactFormSection {
    font-family: Manrope, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
}

#popupForm, #thankYouPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#popupForm > div, #thankYouPopup > div {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: 50px auto; /* Reduced margin */
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.9), rgba(255, 152, 0, 0.9));
    padding: 10px; /* Reduced padding */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#popupForm .close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: red;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    z-index: 10001;
}

#popupForm h5, #thankYouPopup h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 5px; /* Reduced margin */
}

#popupForm p {
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px; /* Reduced margin */
}

#popupForm form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#popupForm label {
    margin-bottom: 2px; /* Reduced margin */
    color: #ffffff;
    font-weight: bold;
    text-align: left;
    width: 100%;
}

#popupForm input,
#popupForm select,
#popupForm textarea {
    margin-bottom: 4px; /* Reduced margin */
    padding: 4px; /* Reduced padding */
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%; /* Adjusted width for full width */
}

#popupForm input:focus,
#popupForm select:focus,
#popupForm textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

#popupForm button {
    padding: 6px 12px; /* Reduced padding */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #689f38; /* Green */
    color: #fff;
    font-weight: bold;
    transition: background-color 0.3s;
    align-self: center;
}

#popupForm button:hover {
    background-color: #218838;
}

#thankYouPopup p {
    color: #ffffff;
    margin-top: 10px;
}

@media (max-width: 600px) {
    #popupForm > div, #thankYouPopup > div {
        margin: 30px auto; /* Further reduced margin for smaller screens */
        padding: 10px; /* Reduced padding */
    }

    #popupForm .close {
        top: 5px;
        right: 5px;
        width: 25px;
        height: 25px;
        font-size: 20px;
        line-height: 25px;
    }

    #popupForm h5, #thankYouPopup h2 {
        font-size: 18px; /* Smaller font size for headers */
    }

    #popupForm p {
        font-size: 14px; /* Smaller font size for paragraph */
    }

    #popupForm label {
        font-size: 14px; /* Smaller font size for labels */
    }

    #popupForm input,
    #popupForm select,
    #popupForm textarea {
        font-size: 14px; /* Smaller font size for inputs */
    }

    #popupForm button {
        font-size: 14px; /* Smaller font size for button */
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 70px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

@media screen and (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 66px;
        right: 15px;
    }
    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }
}
