.custom-image-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
	padding-bottom:0px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #0671A7; /* Updated background color */
    transition: box-shadow 0.3s;
    color: #fff; /* Default text color for better contrast on the background */
	height:100%;
}

.custom-image-box:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.custom-image-box__image img {
    max-width: 100%;
    border-radius: 10px;
}

.custom-image-box__icon {
    margin: 10px 0;
    font-size: 30px;
    color: #00ffc2; /* Updated icon color */
}

.custom-image-box__title {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0;
    color: #fff; /* Title color for better contrast */
}

.custom-image-box__description {
    font-size: 16px;
    color: #fff; /* Description color for better contrast */
}
