body {
    font-family: 'Inter', sans-serif;
    color: #333;
}
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 80vh;
    padding-top: 80px;
}
.section-title {
    position: relative;
    display: inline-block;
}
.divider {
    height: 4px;
    width: 60px;
    background-color: #0d6efd;
    border-radius: 2px;
}
.timeline {
    list-style: none;
    padding: 0;
    position: relative;
}
.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 2px;
    background: #e9ecef;
}
.timeline li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}
.timeline li:before {
    content: '';
    position: absolute;
    left: 4px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0d6efd;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #e9ecef;
}
.project-card {
    transition: transform 0.3s ease;
}
.project-card:hover {
    transform: translateY(-5px);
}

/* Compact Elegant News List */
.news-list {
    list-style: none;
    padding: 0;
}
.news-list-item {
    display: flex;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid #E2E8F0;
    font-size: 0.95rem;
}
.news-date {
    flex: 0 0 120px; /* Fixed width for alignment */
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--tt-accent-cyan);
    font-size: 0.85rem;
    text-transform: uppercase;
}
.news-content {
    color: #334155;
    line-height: 1.5;
}