/* General body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #0056b3;
    text-align: center;
    margin-top: 20px;
}

/* Paragraph styling */
p {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 40px;
}

/* Form styling */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Common styles for form sections */
div[id$="Div"] { /* Targets all divs whose id ends with 'Div' */
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    margin: 20px auto;
    width: 70%;
    max-width: 800px;
    display: none; /* Initially hide all steps except the first one */
}

#startDiv {
    display: block; /* Make startDiv visible */
}

button, input[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 16px;
}

button:hover, input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    div[id$="Div"] {
        width: 80%; /* More appropriate for smaller screens */
    }
}
