    /* Modal Styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.8);
        }
        
        .modal-content {
        background-color: white;
        margin: 10% auto;
        padding: 2rem;
        border-radius: 8px;
        width: 90%;
        max-width: 1200px;
        position: relative;
        }

        .modal-content h3 {
            font-size: 1.5rem;
        }
        
        .modal-content img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 1rem;
        }
        
        .modal-close {
        position: fixed;
        top: 0vw;
        right: 2vw;
        font-size: 5rem;
        cursor: pointer;
        color: #333;
        }