#termofuse {
    font-size: 14px;
    position: absolute;
    top: 78%;
    left: 50%;
    width: 80%; /* Set smaller than the container */
    height: 37%; /* Set smaller than the container */
    background-color: #cfe2ff;
    border: solid 1px #9ec5fe;
    padding: 1px 15px;
    opacity: 0; /* Initially transparent */
    transition: opacity 0.5s ease-in-out; /* Set animation */
    transform: translate(-50%, -50%); /* Centered */
    display: flex; /* Use flexbox */
    flex-direction: column; /* Arrange vertically */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    border-radius: 10px; /* Round corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow */
}
#termofuse ul {
    list-style-type: none; /* Remove markers */
    padding: 0px 15px;
    margin: 5px 0px;
}
#termofuse ul li {
    margin-bottom: 2px;
}
#termofuse p {
    margin: 2px 0 2px 0;
}
#termofuse.visible {
    opacity: 1;
}
.contents {
    padding: 20px;
}
.btn-primary {
    background-color: #007bff; /* Bootstrap primary color */
    color: #fff; /* Set text to white */
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #0056b3; /* Hover color */
}
