        .popUpSection {
            align-items: center;
            width: 340px;
            height: 524px;
            background-color: rgb(245, 245, 245);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 10px 8px rgba(14, 14, 14, 0.2);
            display: none;
            flex-direction: column;
            justify-content: center;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1001;
        }
        .popUpOverlay {
            display: none;
            position: fixed;
            color: black;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }
        .popUpSection h1 {
            font-size: 20px;
        }
        .popUpSection h2 {
            font-size: 24px;
            margin: 0 0 10px;
        }
        .popUpSection h3 {
            font-size: 18px;
            margin: 0 0 20px;
        }
        .popUpSectionLogo {
            width: 50px;
            height: auto;
            align-items: center;
            vertical-align: middle;
            margin-right: 10px;
        }
        .popUpSectionButton {
            background-color: rgb(245, 245, 245);
            color: rgb(0, 0, 0);
            border: none;
            border-radius: 5px;
            padding: 10px 20px;
            font-weight: bold;
            margin-right: 10px;
            width: 100px;
            margin-top: 10px;
            box-shadow: 0 10px 8px rgba(14, 14, 14, 0.2);
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
        }
        .popUpSectionButton:hover {
            background: linear-gradient(135deg, #ece9e9, #aaa8a8);
        }