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

h1 {
    text-align: center;
}

nav {
    text-align: center;
    margin-bottom: 20px;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #007BFF;
}

.image-container, .timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image-item, .timeline-item {
    flex: 1 1 200px;
    box-sizing: border-box;
    padding: 10px;
    margin: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
    text-align: center;
}

.image-item img, .timeline-item img {
    max-width: 100%;
    height: 150px; /* Standardize the image height */
    object-fit: cover; /* Ensure the image fits within the dimensions without distorting */
}

.image-item p, .timeline-item p {
    margin-top: 5px;
    font-size: 14px;
}

form {
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 5px;
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #0056b3;
}

p {
    font-size: 14px;
}