.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-family: "Urbane Rounded";
}

.popup-box {
    background: #ffffff;
    padding: 44px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.popup-box img {
    max-width: 200px !important;
    margin-bottom: 48px;
}

.popup-text-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popup-box h2 {
    font-size: 1.44rem;
    font-weight: 700;
    color: #181F1F;
    margin-top: 0;
    margin-bottom: 10px;
}

.popup-box p {
    font-size: 1rem;
    color: #6C6F75;
    line-height: 1.3;
    margin-bottom: 30px;
    text-wrap: balance;
}

.popup-btn-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.popup-btn-container button {
    background-color: #f5f5f5;
    border: none;
    border-radius: 50px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.popup-btn-container button:hover {
    background-color: #e9e9e9;
	color: #000000;
}
