body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    background: #ffcc00;
}

header, footer {
    background-color: #ffcc00;
    color: #333;
    padding: 20px 0;
}

main {
    padding: 20px;
}

h2 {
    color: #ff8800;
}

form {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
    padding: 10px;
}

form label {
    display: block;
    margin-top: 15px;
}

form input[type="text"],
form input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form input[type="submit"] {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff8800;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    width: 100%;
}

form input[type="submit"]:hover {
    background-color: #e67600;
}

#contact p {
    font-size: 18px;
    margin: 5px 0;
}

@media (max-width: 600px) {
    form {
        padding: 10px;
    }

    form input[type="text"],
    form input[type="tel"],
    form input[type="submit"] {
        font-size: 16px;
    }

    h2 {
        font-size: 22px;
    }

    #contact p {
        font-size: 16px;
    }
}
