/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style for body */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
}

/* Style for header */
h1 {
    color: #333;
    margin-bottom: 20px;
}

/* Style for form sections */
form {
    background-color: #fff;
    padding: 20px;
    margin: 0 auto;
    width: 60%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Style for fieldsets */
fieldset {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
}

/* Style for legends */
legend {
    font-size: 1.2em;
    color: #333;
}

/* Style for labels and inputs */
label {
    display: block;
    margin-bottom: 10px;
}

input[type="text"], input[type="email"], input[type="tel"], textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

input[type="range"] {
    width: 100%;
}

/* Style for buttons */
input[type="submit"], input[type="reset"] {
    padding: 10px 20px;
    margin-top: 20px;
    border: none;
    background-color: #28a745;
    color: white;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
}

input[type="reset"] {
    background-color: #dc3545;
}

/* Style for footer */
footer {
    margin-top: 20px;
}

footer a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}
