.timeline-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)), url('../images/bg3.jpeg') no-repeat center center;
    background-size: cover;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.timeline-hero h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.timeline-hero p {
    font-size: 1.2em;
    opacity: 0.9;
}

.timeline-map {
    padding: 60px 0;
    background: #f8f8f8;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    gap: 40px;
}

#map {
    flex: 1;
    height: 550px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-overlay {
    width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-overlay h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.8em;
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-item {
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.location-item:hover {
    transform: translateY(-5px);
}

.location-item .year {
    font-weight: bold;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.location-item .place {
    font-size: 1.2em;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.location-item p {
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.milestone-events {
    padding: 60px 0;
    background: #fff;
}

.milestone-events h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    color: #333;
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.event-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-image {
    height: 300px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-info {
    padding: 20px;
}

.event-info h3 {
    color: #666;
    margin-bottom: 5px;
}

.event-info h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.event-info p {
    color: #777;
    line-height: 1.6;
}

.achievements {
    padding: 60px 0;
    background: #f8f8f8;
}

.achievements h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    color: #333;
}

.awards-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.award-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.award-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.award-info h4 {
    margin: 0 0 5px;
    color: #333;
}

.award-info p {
    margin: 0 0 5px;
    color: #666;
    font-size: 0.9em;
}

.award-info .year {
    color: #999;
    font-size: 0.8em;
}
