.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-custom {
    max-width: 900px; /* Adjust the width as desired */
}

.modal-content {
    border-radius: 15px;
}

h2 {
    color: #002E6D;
    margin-top: 30px;
    margin-bottom: 15px;
}

.tc-p {
    margin-bottom: 20px;
    color: black;
    text-align: justify;
}

.modal-header {
    border-bottom: none;
}


.modal-header .close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.modal-header .close:hover {
    background-color: #f1f1f1;
}

.modal-header .close::before,
.modal-header .close::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 16px;
    background-color: #000;
}

.modal-header .close::before {
    transform: rotate(45deg);
}

.modal-header .close::after {
    transform: rotate(-45deg);
}