.legacy-section {
    padding: 50px 0;
}

.legacy-wrapper {
    position: relative;
    /* Ensures proper wrapping of text around the image */
}

.legacy-header {
    font-size: 48px;
    font-weight: bold;
    border-bottom: 3px solid black;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.legacy-image {
    float: right; /* Makes the image float to the right */
    margin: 0 0 20px 20px; /* Adds space around the image to the left and bottom */
    max-width: 400px; /* Sets a maximum width for the image */
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.legacy-content {
    font-size: 18px;
    line-height: 1.6;
    text-align: justify; /* Ensures text is justified for better readability */
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .legacy-image {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
        max-width: 100%; /* Full-width on smaller screens */
    }
}
