
    #brochureModal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        overflow: hidden;
    }

    .modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        width: 500px;
        height: 630px;
        border-radius: 8px;
        overflow: hidden;
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .modal-header h3 {
        margin: 0;
    }

    .close {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
    }

    .modal-body {
        width: 100%;
        height: calc(100% - 60px);
        
    }

    .modal-body iframe {
        width: 100%;
        height: 100%;
        border: none;
        overflow: hidden;
    }

    .modal-body iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
    .header_btn_wrap {
        display: flex;
        gap: 10px;
        flex-direction: row;
    }
    @media (max-width: 500px) {
        .header_btn_wrap {
            flex-direction: column;
            margin-top: 10px;
        }
    }
