.card-container {
    position: relative;
    max-width: 800px; /* Use max-width for flexibility */
    width: 100%; /* Take up full width */
    height: auto;
    padding-bottom: 20px;
    margin: 20px; /* Reduced margin for smaller screens */
    box-sizing: border-box;
}

.card-shadow {
    position: absolute;
    top: 2px;
    width: calc(100% - 35px);
    height: 100%;
    background-color: #e6ebf3;
    border-radius: 30px;
    z-index: 1;
    margin-left: 17px;
    box-shadow: 0 2px 22px rgba(0, 0, 0, 0.2);
}

.card {
    position: relative;
    width: 100%;
    background-color: #ebebeb;
    border-radius: 10px;
    z-index: 2;
    padding: 20px;
    box-sizing: border-box;
	color:#666666;
}

/* Responsive styles */
@media (max-width: 600px) {
    .card-container {
        margin: 10px; /* Smaller margin on small screens */
    }

    .card-shadow {
        width: calc(100% - 10px); /* Slightly smaller shadow on small screens */
        margin-left: -5px; /* Adjust margin-left to match new shadow width */
    }

    .card {
        padding: 15px; /* Less padding on small screens */
    }
}



/* Custom styles for Slick carousel dots */
.slick-dots {
    text-align: center;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    font-size: 0; /* Hides the default number inside the button */
    line-height: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 0;
    background-color: #ddd; /* Default color for dots */
    border: none;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background-color: green; /* Color for the active dot */
}


