/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: rgb(204, 223, 228);
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

/* Form Fields */
input[type="text"], input[type="number"], input[type="email"], select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

input[type="file"] {
    margin-top: 10px;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

/* Footer Styles */
.footer {
    margin-top: 50px;
    background-color: #f1f1f1;
    padding: 20px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

/* Footer Container for Flexbox */
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* Individual Sections */
.about, .contact {
    flex: 1;
    min-width: 250px;
}

/* Related Links */
.related-links {
    margin-top: 20px;
    text-align: center;
}

.related-links a {
    color: #000;
    text-decoration: none;
}

.related-links a:hover {
    text-decoration: underline;
}
