body {
    font-family: 'Courier Prime', monospace;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    text-align: center;
    color: #222;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid #ddd;
    text-align: center;
}

h1 {
    font-family: 'Courier Prime', monospace;
    font-size: 2.2em;
    font-weight: 700;
    color: #004466;
}

h2 {
    font-family: 'Courier Prime', monospace;
    font-size: 1.6em;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
}

h3 {
    font-size: 1.2em;
    font-weight: bold;
    margin: 5px 0;
    color: #004466;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

p {
    font-size: 0.9em;
    line-height: 1;
    margin: 3px 0;
    word-wrap: break-word;
}

a {
    color: #004466;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: #002233;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.icons img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 8px;
}

hr {
    margin: 30px auto;
    width: 80%;
    border: 0;
    border-top: 2px solid #ccc;
}

.timeline {
    position: relative;
    margin: 20px auto;
    padding: 0;
    list-style: none;
    max-width: 700px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #004466;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin: 20px 0;
    padding-left: 70px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80px;
    padding-bottom: 10px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 42px;
    width: 14px;
    height: 14px;
    background: #004466;
    border-radius: 50%;
    top: 20px;
    border: 2px solid white;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.timeline-content {
    padding: 10px 20px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-width: 100%;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    word-break: break-word;
    position: relative;
}

.timeline-content h3 .date {
    font-size: 0.9em;
    color: #555;
    font-style: italic;
    text-align: right;
    margin-left: 0px;
    font-weight: normal;
    white-space: nowrap;
}

.date {
    font-size: 0.7em;
    color: #777;
    font-style: italic;
    font-weight: normal;
    white-space: nowrap;
    margin-left: auto;
}

@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 15px;
    }
    h1 {
        font-size: 1.8em;
    }
    h3 {
        font-size: 1.1em;
        flex-direction: column;
        align-items: flex-start;
    }
    h3 .date {
        text-align: left;
        margin-top: 3px;
    }
    p {
        font-size: 0.9em;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        padding-left: 40px;
    }
    .timeline-item::before {
        left: 15px;
    }
}
