
    .legacy-container {
        max-width: 1200px;
        margin: 20px auto;
        position: relative;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .history-text {
        flex: 1;
        max-width: 700px;
        margin-top: 20px;
        width: 100%;
    }
    
    .history-text h2 {
        font-size: clamp(2rem, 5vw, 3rem); /* Responsive font size */
        font-weight: 800;
        color: #222;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .history-text p {
        font-size: clamp(1rem, 1.2vw, 1.1rem); /* Responsive font size */
        color: #555;
        line-height: 1.6;
    }
    
    .legacy-table {
        width: 100% !important;
        max-width: 628px;
        margin: 0 auto;
        background-color: #ffffff;
    }
    
    .legacy-table img {
        max-width: 100%;
        height: auto;
    }
    
    .legacy-table td {
        width: auto !important;
        max-width: 100%;
    }
    
    .legacy-header {
        display: flex;
        flex-wrap: wrap;
        border: 1px solid #000;
    }
    
    .legacy-logo {
        width: 120px;
        min-width: 120px;
    }
    
    .legacy-header-content {
        flex: 1;
        min-width: 200px;
        background-color: #000;
        color: #fff;
        text-align: center;
        padding: 10px;
    }
    
    .header-images {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    
    @media (max-width: 768px) {
        .history-text {
            padding: 0 10px;
        }
        
        .legacy-header-content {
            width: 100%;
        }
        
        .header-images img {
            max-width: 100%;
        }
    }
