body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    text-align: center;
    background-color: #0078D7;
    color: white;
    padding: 20px;
    border-bottom: 5px solid #005BB5;
}

h1 {
    margin: 0;
    font-size: 2.5em;
}

p {
    margin: 10px 0;
    font-size: 1.2em;
}

.timeline-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event {
    background: #0078D7;
    color: white;
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.event:hover {
    background: #005BB5;
    transform: translateY(-3px);
}

.date {
    font-size: 1.2em;
    font-weight: bold;
    display: block;
}

.details-section {
    margin-top: 20px;
    padding: 20px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.1em;
    line-height: 1.6;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.details-section img {
    width: 300px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

img {
    margin: auto;
    text-align: center;
    border: 1px;
}