.popup {
    height: 80%;
    width: 80%;
    background-color: #f0f8ff; /* Soft blue for better readability */
    color: #2a2a2a;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px, rgba(0, 0, 0, 0.1) 0px 6px 10px;
    padding: 20px;
    overflow-y: auto;
    border: 2px solid rgba(0, 0, 128, 0.3); /* Light blue border */
    /* display: none; */
}

.popup::-webkit-scrollbar {
    display: none;
}

.popup h1, .popup h2, .popup h3 {
    text-align: left;
    font-size: 1.5em;
    color: #2b5797; /* Blue shade for headings */
    margin-top: 2px;
    font-family: "alata-reglar";
}

.popup p, .popup li {
    text-align: justify;
    line-height: 1.6;
    font-size: 1em;
    margin: 10px 0;
    color: #2a2a2a;
}

.popup ul {
    padding-left: 20px;
}

.popup button {
    display: block;
    margin: 20px auto 0 auto;
    padding: 10px 20px;
    background-color: #4682b4; /* Softer blue for the button */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.popup button:hover {
    background-color: #31688e; /* Darker blue for hover state */
}

.popup .scrollDown {
    position: absolute;
    bottom: 20px;
    color: #2b5797;
}

.example-image {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
}
