``` ```css /* Basic Styling (Bootstrap - adjusted for realism) */ body { font-family: 'Roboto', sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; color: #333; } .container { width: 80%; margin: 20px auto; } .row { display: flex; flex-wrap: wrap; justify-content: space-between; padding: 20px; } .col-6 { width: 60%; padding: 20px; } .col-6 > a { text-decoration: none; color: #007bff; font-weight: bold; border-bottom: 1px solid #ddd; padding-bottom: 10px; } .col-6 > a:hover { background-color: #e8d1b0; } .image-container { width: 100%; height: auto; border: 1px solid #ddd; border-radius: 5px; margin-bottom: 10px; } .title { font-size: 24px; font-weight: bold; margin-bottom: 10px; } .text-center { text-align: center; } .button { border: 1px solid #ccc; padding: 10px 20px; border-radius: 5px; cursor: pointer; } .button:hover { background-color: #5cb85c; } .image-container img { max-width: 100%; height: auto; display: block; } ``` ```javascript // Minimal JS (Bootstrap - for the modal) - Illustrative //This JS will be handled by Bootstrap's modal. //Note: This JS is deliberately minimal for simplicity in this response.