.cookie-popup.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}
.popup-content p {
    font-size: 16px;
}
.popup-content a {
    color: #007bff;
    text-decoration: none;
}
.popup-content button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    background: #003C97;
    color: white;
    cursor: pointer;
    font-size: 16px;
}
@media (max-width: 480px) {
    .popup-content {
        max-width: 90%;
    }
    .popup-content p {
        font-size: 14px;
    }
    .popup-content button {
        font-size: 14px;
        padding: 8px;
    }
}