body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.contact-container {
    background-color: #c0c0c0;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    text-align: left;
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #444;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #999;
    border-radius: 2px;
    box-sizing: border-box; 
    font-size: 14px;
}

textarea {
    resize: none; 
    height: 100px;
}

.submit-btn {
    display: block;
    width: 100px;
    margin: 20px auto 0;
    padding: 10px;
    background-color: #00a8a8;
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-weight: bold;
}

.submit-btn:hover {
    background-color: #008b8b;
}