.contact1 {
 font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    #align-items: center;
    min-height: 70vh;
    margin: 0;
    padding: 8rem 2rem;
}

.contact-container {
background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    #height: auto;
    height: max-content;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

.message {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact1 button {
    width: 100%;
    padding: 10px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
}

.contact1 button:hover {
    background-color: #4f46e5;
}

@media (max-width: 768px) {
                .contact1  {
               padding: 4rem 2rem;
            }
}

@media (max-width: 480px) {
                .contact1  {
               padding: 4rem 2rem;
            }
}

