.track-record-section {
    padding: 100px 0;
    font-family: 'Roboto', sans-serif;
}

.track-record-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.track-record-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.track-record-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.track-record-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    font-style: italic;
    color: #1a1a1a;
}

.track-record-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2E2A25;
}

.track-record-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.track-record-card {
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #F0E9D8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Top-left alignment */
}

.track-record-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.track-record-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px; /* Flat/line style icon size */
}

.track-record-icon i, 
.track-record-icon svg {
    width: 100% !important;
    height: 100% !important;
    max-width: 40px !important;
    max-height: 40px !important;
    object-fit: contain;
}

.track-record-card-title {
    font-size: 1.5rem;
    font-family: 'Roboto Slab', serif;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
}

.track-record-card-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2E2A25;
    text-align: left;
}

.track-record-card-content ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.track-record-card-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.track-record-card-content li::before {
    content: '—';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #cc5500;
}

@media (max-width: 768px) {
    .track-record-grid {
        grid-template-columns: 1fr;
    }
    .track-record-title {
        font-size: 2rem;
    }
    .track-record-subtitle {
        font-size: 1.5rem;
    }
}
