.readMoreContent {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-out;
}

.readMoreContent.open {
    max-height: 500px; 
}

/* Base button styling */
.readMoreBtn {
    background-color: #4AC4F3;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer; 
    transition: background-color 0.3s ease, transform 0.2s ease;
    outline: none;
}

/* Hover state */
.readMoreBtn:hover {
    background-color: #3a98c4; 
    transform: scale(1.05); 
}

/* Focus state */
.readMoreBtn:focus {
    box-shadow: 0 0 0 3px rgba(74, 196, 243, 0.5); 
}

/* Define the color for the checkmark */
.custom-list {
    list-style: none; /* Remove default list styling */
    padding-left: 0; /* Remove default padding */
}

.custom-list li {
    position: relative; /* Position relative to place the checkmark */
    padding-left: 30px; /* Add padding to make space for the checkmark */
    margin-bottom: 10px; /* Add some spacing between list items */
    line-height: 1.5; /* Improve readability */
}

.custom-list li::before {
    content: '✔'; /* Unicode for checkmark */
    position: absolute; /* Absolute positioning for custom placement */
    left: 0; /* Position the checkmark on the left */
    top: 0; /* Align the checkmark with the text */
    color: #4AC4F3; /* Bluish color */
    font-size: 1.2em; /* Adjust size as needed */
    line-height: 1; /* Align checkmark vertically */
}


.whatsapp-chat-bubble {
    position: fixed;
    bottom: 100px;
    right: 40px;
    background-color: #25D366; /* WhatsApp green */
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1000;
}

.whatsapp-chat-bubble img {
    width: 30px;
    height: 30px;
}

.hover-effect {
    transition: box-shadow 0.3s ease;
}

.hover-effect:hover {
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}