body {
    background-color: #f8f9fa;
    position: relative;
}

.accordion-button {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

.accordion-button:hover {
    background-color: #0056b3;
}

.accordion-body {
    background-color: #96e6c8;
    color: #333;
    font-weight: bold;
    text-align: justify;
}

li strong {
    color: red;
}

ul li {
    list-style:none ;
}


.watermark-container {
    position: relative;
}

.watermark {
    position: absolute;
    top: calc(50% + 24px);
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 0.1;
    font-size: 32px;
    font-weight: bold;
    color: red;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    white-space: nowrap;
    z-index: 999;
}


.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

.heart-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 200px;
    height: 180px;
    background-color: red;
    clip-path: path("M100 30 C 130 -20, 200 -10, 200 50 C 200 90, 150 130, 100 170 C 50 130, 0 90, 0 50 C 0 -10, 70 -20, 100 30 Z");
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    transition: transform 0.5s ease-in-out;
}

.heart-modal.show {
    transform: translate(-50%, -50%) scale(1);
}