#contactForm {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
   
    background-color: #f9f9f9;
    
}

#contactForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#contactForm button[type="submit"] {
    background-color: #264790;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#contactForm button[type="submit"]:hover {
    background-color: #e58013;
}

#contactForm .cf-logo {
    text-align: center;
    margin-bottom: 20px;
}

#contactForm .cf-logo img {
    max-width: 150px; /* Adjust the size as needed */
    height: auto;
}