.btn-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 500px;
    width: 100%;
}
.btn-container-insurance {
    display: flex;
    flex-direction: column;
    gap: 11px;
    max-width: 500px;
    width: 100%;
}

.card-btn {
    background: linear-gradient(145deg, #f8f9ff, #e6f2ff);
    border: 2px solid #e0e7ff;
    border-radius: 25px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.card-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05), rgba(0, 242, 254, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.card-btn:hover::after {
    opacity: 1;
}

.card-btn:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.15);
    border-color: #c7d2fe;
}

.card-btn .icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
    transition: all 0.3s ease;
}

.card-btn:hover .icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(79, 172, 254, 0.4);
}

.card-btn .icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.card-btn .content {
    flex: 1;
    text-align: center;
    color: #374151;
}

.card-btn .title {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-btn .subtitle {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.card-btn .arrow {
    width: 45px;
    height: 45px;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.card-btn:hover .arrow {
    transform: translateX(8px) rotate(45deg);
    background: #ffffff;
    border-color: #d1d5db;
}

.card-btn .arrow svg {
    width: 18px;
    height: 18px;
    fill: #6b7280;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        gap: 25px;
        max-width: 100%;
    }


    .card-btn {
        padding: 18px 20px;
    }


    .card-btn .icon {
        width: 45px;
        height: 45px;
    }


    .card-btn .title {
        font-size: 16px;
    }


    .card-btn .subtitle {
        font-size: 11px;
    }


    .card-btn .arrow {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {


    .card-btn {
        padding: 15px 18px;
        border-radius: 15px;
    }


    .card-btn .icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .card-btn .title {
        font-size: 15px;
    }


    .card-btn .arrow {
        width: 32px;
        height: 32px;
    }
}