/* style.css */
body {
    font-family: Arial, sans-serif;
}
h1, h2, h3, h4 {
    color: #333;
}
form {
    margin-bottom: 20px;
}
input[type="text"], input[type="url"], textarea, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button, input[type="submit"], input[type="button"] {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}
button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background-color: #005177;
}
img {
    max-width: 150px;
    height: auto;
}