#disclosureOk {
    background-color: #007849;
    color: white;
    padding: 10px 20px;
    border: none;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    width: 180px;
    border: 2px solid #007849;
}

#disclosureOk:hover {
    background-color: transparent;
    color: #007849;
    border: 2px solid #007849;
}

#disclosureModal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

#closeDisclosure {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

#disclosure-content {
    background-color: white;
    max-width: 930px;
    border-radius: 16px;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    position: relative;
    margin: 20px;
    padding: 50px 70px;
}

#disclosureLink {
    color: black;
    font-size: 12px;
    font-family: sans-serif;
    text-transform: uppercase;
}

@media (max-width: 940px) {
    #disclosureOk {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #disclosure-content {
        padding: 20px 30px;
    }
}
