.info-box {
    background-color: #e7f3fe;
    color: #0c5460;
    border: 1px solid #b8daff;
    border-radius: 8px;
    padding: 20px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.info-box:hover {
    background-color: #d4ebfd;
}

.info-title {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-icon {
    margin-right: 10px;
    font-size: 20px;
}

.arrow {
    transition: transform 0.3s ease;
}

.rotate {
    transform: rotate(90deg);
}

.info-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.5;
}

    .info-content.show {
        max-height: 300px;
    }




.custom-container {
    /*max-width: 600px;*/
    width: 100%;
    background-color: white;
    margin-top: 36px;
}

.alert {
    font-size: 1.5rem;
}

/* Continuous pulse animation */
.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}


.emoji {
    font-size: 1.5rem;
    margin-right: 8px;
}

.phone {
    font-weight: bold;
    color: navy;
}

