.history-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;

    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.history-section .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.history-section .image-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    padding: 30px;
}

.history-section .image-wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.history-milestones {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 32px 0;
    border-left: 3px solid var(--accent);
    padding-left: 22px;
    padding-right: 32px;
}

.milestone {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.milestone:last-child {
    border-bottom: none;
}

.milestone-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 48px;
    flex-shrink: 0;
}

.milestone-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 900px) {
    .history-section .image-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0;
    }
}

/* Desktop */
@media (min-width: 900px) {
    .history-section .image-wrapper {
        flex-direction: row;
        justify-content: space-evenly;
        gap: 16px;
    }

    .history-section .image-wrapper img {
        width: 48%;
        height: 400px;
        object-fit: cover;
    }
}
