.container {
    width: 80vw;
    height: 72vh;
    margin: 7vh auto 0 auto;
    background-color: #f8f9fa;
    color: #333;
    font-family: 'Arial', sans-serif;
    display: flex;
}
.container table {
    margin: 0 auto;
    padding: 0;
    border-spacing: 25px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    align-items: center;
    font-family: Arial, sans-serif;
}
.container table tr>:first-child {
    border-radius: 15px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    width: 20%;
    text-align: center;
    background: linear-gradient(-35deg, #af8f24, #ffd700);
    font-weight: bold;
    color: white;
    font-size: 30px;
    padding: 4%;
    transition: all 0.5s ease;
}
.container table tr>:first-child:hover {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
    font-size: 35px;
    transform: translateY(-2px);
}
.container table td {
    border-radius: 15px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    background-image: url("../images/news_icon1.png");
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    font-size: 18px;
    width: 75%;
    padding: 2%;
}
.container table td p {
    text-align: center;
}
.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1em 0;
    position: relative;
    overflow-x: auto;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 0.2em;
    background: #d4af3a;
    z-index: 1;
}
.timeline-item {
    flex: 1;
    text-align: center;
    padding: 0 0.5em;
    position: relative;
    z-index: 2;
}
.timeline-date {
    font-size: 0.9em;
    font-weight: bold;
    color: #d4af3a;
    margin-bottom: 0.5em;
}
.timeline-content {
    font-size: 0.8em;
    background: #f8f9fa;
    padding: 0.5em;
    border-radius: 0.3em;
    box-shadow: 0 0.1em 0.3em rgba(0, 0, 0, 0.1);
}