body {
    font-family: Arial, sans-serif;
    background-color: #1A1A1A; /* Dark Gray Background */
    color: white; /* Default text color */
    margin: 0;
    padding: 20px;
}

.header {
    display: flex; /* Use Flexbox for layout */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    margin-bottom: 20px; /* Space below the header */
    max-width: 180px; /* Set a maximum width for the header */
    margin-left: auto; /* Center the header */
    margin-right: auto; /* Center the header */
}

.logo {
    max-width: 100px; /* Set a maximum width for the logo */
    height: auto; /* Maintain aspect ratio */
    margin-right: 20px; /* Space between logo and heading */
}

h1 {
    color: #ededed; /* Pastel Blue for headings */
    margin: 0; /* Remove default margin */
}

h2 {
    color: #c4c4c4; /* Pastel Blue for subheadings */
    text-align: center;
}

/* Container for images */
.image-container {
    display: flex;
    flex-wrap: wrap; /* Allow images to wrap to the next line */
    justify-content: center; /* Center images horizontally */
    margin: 20px 0; /* Add some margin around the image container */
}

.image {
    flex: 1 1 40%; /* Allow each image block to take up to 40% of the container width */
    margin: 10px; /* Add margin around each image block */
    text-align: center; /* Center text within each image block */
}

img {
    display: block;
    margin: 0 auto; /* Center the image */
    max-width: 100%; /* Allow images to scale down to fit their container */
    height: auto; /* Maintain aspect ratio */
}

form {
    max-width: 600px;
    margin: 0 auto;
    background: rgb(40, 40, 40); /* White background for the form */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

input[type="file"] {
    display: none; /* Hide the default file input */
}

select {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #399ca5; /* Pastel Blue border */
    border-radius: 5px;
    font-size: 16px;
    background-color: #f4f4f4; /* Light background for select */
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #399ca5; /* Pastel Blue */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #8BB8D8; /* Pastel Blue Hover */
}

a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #399ca5; /* Pastel Blue */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

a:hover {
    background-color: #8BB8D8; /* Pastel Blue Hover */
}

/* Custom file input button */
.custom-file-upload {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #399ca5; /* Pastel Blue */
    color: white;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    margin: 20px auto;
}

.custom-file-upload:hover {
    background-color: #8BB8D8; /* Pastel Blue Hover */
}

/* Responsive Styles */
@media (max-width: 600px) {
    .image {
        flex: 1 1 100%; /* On small screens, images take full width */
    }

    .logo {
        max-width: 80px; /* Adjust logo size for smaller screens */
    }

    form {
        padding: 15px;
    }

    button, select {
        font-size: 14px;
    }
}

