.cwc-consult-box-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.cwc-consult-box {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: #D1EAEF;
    border-radius: 30px;
    text-decoration: none !important;
    overflow: hidden;
    min-height: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cwc-consult-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Background Bubbles */
.cwc-consult-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.cwc-consult-bubbles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.cwc-consult-bubbles span:nth-child(1) {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.cwc-consult-bubbles span:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
}

.cwc-consult-bubbles span:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 20%;
    opacity: 0.15;
}

.cwc-consult-upper {
    position: relative;
    z-index: 1;
    flex: 1;
}

.cwc-consult-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #214952;
    margin: 0;
}

.cwc-consult-lower {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: -30px;
    margin-bottom: -30px;
}

/* The Sub-Box with the "carved out" white border look */
.cwc-consult-sub-content {
    background-color: #D6EFF4;
    padding: 20px 25px;
    border-top-left-radius: 25px;
    border-top: 5px solid #ffffff;
    border-left: 5px solid #ffffff;
    display: flex;
    flex-direction: column;
    min-width: 180px;
    position: relative;
}

.cwc-consult-sub-text {
    font-size: 18px;
    font-weight: 700;
    color: #214952;
    margin-bottom: 25px;
    line-height: 1.2;
    display: block;
    max-width: 100px;
}

.cwc-consult-arrow-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background-color: #007BFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cwc-consult-box:hover .cwc-consult-arrow-btn {
    transform: scale(1.1);
}

.cwc-consult-arrow-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 767px) {
    .cwc-consult-title {
        font-size: 18px;
    }

    .cwc-consult-sub-text {
        font-size: 16px;
    }
}