* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.header {
    background-color: green;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    background-color: #f2f2f2;
}

.contact {
    background-color: #ffffff;
    padding: 25px;
    width: 320px;
    border-radius: 10px;
    border: 3px solid green;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.contact:hover {
    box-shadow: 0 4px 20px green;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 8px;
    margin: 6px 0 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border: 2px solid #4CAF50;
    outline: none;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.6);
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

input[type="submit"]:hover {
    background-color: darkgreen;
    transform: scale(1.05);
}

.footer {
    background-color: green;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}