/* Contect section styles landing pages */
.contactLanding{
    background-image: url('../img/contact.png'); 
    background-size: cover;
    text-align: center;
    padding: 100px 0;
    color: #fff;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    background-position: center 0px; 
    opacity: 0.8; 
}

.contactLanding h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contactLanding p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ffffff;
}


.contact_info {
    text-align: center;
}

.contact_info img { 
    max-width: 800px;
}
.contact_info p {
    text-align: center;
    margin-left: 80px;
    margin-right: 80px;
}

/* Centered Form */
.centered-form {
    text-align: center;
    margin: 0 auto;
    max-width: 500px; 
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.centered-form h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.centered-form form {
    text-align: left;
}

.centered-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.centered-form input[type="text"],
.centered-form input[type="email"],
.centered-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.centered-form button[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.centered-form button[type="submit"]:hover {
    background-color: #555;
}
