#lincolnExperience h2
        {
            padding: 1em 0;
        }
        #lincolnExperience .experience-cards
        {
            display: flex;
            gap: 1em;
            justify-content: space-between; 
            align-items: stretch; 
        }

        #lincolnExperience .card
        {
            flex: 1; 
            display: flex;
            flex-direction: column; 
            align-items: center;
            text-align: center;
            padding: 1em;
            border: 1px solid #ddd;
            border-radius: 8px;
            background-color: #fff;
        }
        #lincolnExperience .card img
        {
            width: 80%; 
            height: auto;
            margin-bottom: 1em;
        }

        #lincolnExperience .card-title
        {
            width: 100%;
            font-size: 1.2em;
            font-weight: bold;
            margin-bottom: 0.5em;
            color: #333;
        }

        #lincolnExperience .card-description
        {
            width: 100%; 
            font-size: 1em;
            color: #555;
            flex-grow: 1; 
        }

        @media screen and (max-width: 768px)
        {
            #lincolnExperience .experience-cards
            {
                flex-direction: column;
                gap: 1em;
            }
        }